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