Files
ESPC3-wireless/app/drivers/sertrf/sertrf.h
2025-08-20 11:31:55 +08:00

38 lines
455 B
C

#pragma once
#include "device.h"
#include "../led_strip/led_strip.h"
typedef struct
{
device_t device;
os_thread_t embedded_thread;
}sertrf_t;
/**
* @brief 模块初始化
*/
void sertrf_init(void);
/**
* @brief 模块启动
*/
void sertrf_start(void);
/**
* @brief 模块停止
*/
void sertrf_stop(void);
/**
* @brief 模块数据查看
*/
void sertrf_status(void);
/**
* @brief embedded thread
*/
void embedded_thread(void* arg);