rebasing gamma-support on 2.1.10

This commit is contained in:
Skot
2024-08-15 18:51:05 -04:00
parent 064b89207f
commit 4cd7a38b9f
26 changed files with 778 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
#ifndef SERIAL_H_
#define SERIAL_H_
#define SERIAL_BUF_SIZE 16
int SERIAL_send(uint8_t *, int, bool);
void SERIAL_init(void);
void SERIAL_debug_rx(void);
int16_t SERIAL_rx(uint8_t *, uint16_t, uint16_t);
void SERIAL_clear_buffer(void);
void SERIAL_set_baud(int baud);
#endif /* SERIAL_H_ */