only open python if not sim mode

pull/104/head
alanbjohnston 5 years ago committed by GitHub
parent 3bd32d2388
commit b2fcbef084
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -618,17 +618,20 @@ int main(int argc, char * argv[]) {
get_tlm_fox(); get_tlm_fox();
firstTime = 1; firstTime = 1;
strcpy(pythonStr, pythonCmd); if (!sim_mode)
strcat(pythonStr, busStr); {
strcat(pythonConfigStr, pythonStr); strcpy(pythonStr, pythonCmd);
strcat(pythonConfigStr, " c"); strcat(pythonStr, busStr);
strcat(pythonConfigStr, pythonStr);
strcat(pythonConfigStr, " c");
fprintf(stderr, "pythonConfigStr: %s\n", pythonConfigStr); fprintf(stderr, "pythonConfigStr: %s\n", pythonConfigStr);
file1 = sopen(pythonConfigStr); // python sensor polling function file1 = sopen(pythonConfigStr); // python sensor polling function
fgets(cmdbuffer, 1000, file1); fgets(cmdbuffer, 1000, file1);
fprintf(stderr, "pythonStr result: %s\n", cmdbuffer); fprintf(stderr, "pythonStr result: %s\n", cmdbuffer);
}
long int loopTime; long int loopTime;
loopTime = millis(); loopTime = millis();

Loading…
Cancel
Save

Powered by TurnKey Linux.