Migrate serial drivers

This commit is contained in:
2025-06-08 15:28:49 +01:00
parent 3dc015481a
commit aed062ed86
17 changed files with 85 additions and 1171 deletions

View File

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