Vuo  2.0.0
VuoSerial.h
Go to the documentation of this file.
1 
10 #include "node.h"
11 
12 #ifdef __cplusplus
13 extern "C"
14 {
15 #endif
16 
17 #include "VuoBaudRate.h"
18 #include "VuoData.h"
19 #include "VuoParity.h"
20 #include "VuoSerialDevice.h"
22 
24 
25 void VuoSerial_use(void);
26 void VuoSerial_disuse(void);
29 
30 
34 typedef void *VuoSerial;
35 
36 VuoSerial VuoSerial_getShared(const VuoText devicePath);
38 
39 void VuoSerial_configureDevice(VuoSerial device, VuoInteger baudRate, VuoInteger dataBits, VuoParity parity, VuoInteger stopBits);
40 
43 
44 void VuoSerial_sendData(VuoSerial device, const VuoData data);
45 
46 #ifdef __cplusplus
47 }
48 #endif