Files
chargeflow/components/serial_mt/include/serial_mt.h
2025-06-06 21:17:25 +01:00

27 lines
290 B
C
Executable File

#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_ */