merge resovled

This commit is contained in:
2019-08-26 10:55:44 +02:00
5 changed files with 55 additions and 11 deletions

View File

@ -2321,9 +2321,6 @@ int configure_mac(int file_des) {
if (receiveData(file_des, args, sizeof(args), OTHER) < 0)
return printSocketReadError();
#if defined(MYTHEN3D)
functionNotImplemented();
#else
FILE_LOG(logDEBUG1, ("\n Configuring MAC\n"));
// dest port
uint32_t dstPort = 0;
@ -2442,7 +2439,7 @@ int configure_mac(int file_des) {
if (status != IDLE && status != RUN_FINISHED && status != STOPPED) {
if (status == RUNNING)
stopStateMachine();
#if !defined(EIGERD) && !defined(GOTTHARD2D)
#if !defined(EIGERD) && !defined(MYTHEN3D) && !defined(GOTTHARD2D)
cleanFifos();
#endif
status = getRunStatus();
@ -2516,7 +2513,6 @@ int configure_mac(int file_des) {
}
}
}
#endif
return Server_SendResult(file_des, OTHER, UPDATE, retvals, sizeof(retvals));
}