MessagesForMacintosh/coprocessorjs.h

17 lines
407 B
C
Raw Normal View History

2021-09-11 06:12:19 +00:00
const int MAX_RECEIVE_SIZE;
void setupCoprocessor(char *applicationId, const char *serialDeviceName);
void sendProgramToCoprocessor(char* program, char *output);
void callFunctionOnCoprocessor(char* functionName, char* parameters, char* output);
void callEvalOnCoprocessor(char* toEval, char* output);
void wait(float whatever);
char *strtokm(char *str, const char *delim);
2021-09-11 06:12:19 +00:00
OSErr closeSerialPort();