Adicionar primeiro

This commit is contained in:
2025-06-06 21:17:25 +01:00
parent c188084ba4
commit 282e7f517b
841 changed files with 199592 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
#ifndef SERIAL_MT_H_
#define SERIAL_MT_H_
#include "driver/uart.h"
/**
* @brief Send Data
*
*/
int sendData(const char *data);
/**
* @brief Start serial MT
*
*/
void serial_mt_start();
/**
* @brief Stop serial MT
*
*/
void serial_mt_stop(void);
#endif /* SERIAL_MT_H_ */