2026-02-26 17:19:05 -03:00

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);