mirror of
https://github.com/TheusHen/EEGFrontier.git
synced 2026-04-13 15:05:49 +00:00
13 lines
233 B
C
13 lines
233 B
C
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
void txInit();
|
|
void txService();
|
|
size_t txQueuedBytes();
|
|
size_t txFreeBytes();
|
|
bool txWriteBytes(const uint8_t* data, size_t len);
|
|
bool txWriteByte(uint8_t b);
|
|
bool txWriteCString(const char* s);
|
|
|