hollyhock
Loading...
Searching...
No Matches
serial.hpp
Go to the documentation of this file.
1
6// This works exactly the same as the calls on the cg50. Read more here:
7// https://prizm.cemetech.net/index.php?title=Category:Syscalls:Serial
8// These implementations are similar to:
9// https://github.com/Jonimoose/libfxcg/blob/master/include/fxcg/serial.h
10
11#pragma once
12#include <stdint.h>
13
30extern "C"
31int Serial_Open(unsigned char *mode);
32
33extern "C"
34int Serial_IsOpen(void);
35
36extern "C"
37int Serial_Close(int mode);
38
39extern "C"
40int Serial_Read(unsigned char *out, int sz, short *count);
41
42extern "C"
43int Serial_ReadSingle(unsigned char *out);
44
45extern "C"
46int Serial_Peek(int idx, unsigned char *out);
47
48extern "C"
49int Serial_PollRX(void);
50
51extern "C"
52int Serial_ClearRX(void);
53
61extern "C"
62int Serial_Write(const unsigned char *buf, int count);
63
64extern "C"
65int Serial_WriteSingle(unsigned char x);
66
67extern "C"
68int Serial_WriteUnbuffered(unsigned char x);
69
70extern "C"
71int Serial_PollTX(void);
72
73extern "C"
74int Serial_ClearTX(void);
75
76
int Serial_Write(const unsigned char *buf, int count)
int Serial_Open(unsigned char *mode)