提交全部资料

This commit is contained in:
2026-03-31 15:40:09 +08:00
parent 46f0e8d6c2
commit 4d2204bf84
235 changed files with 101676 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
#ifndef __MOD_H
#define __MOD_H
#include "main.h"
typedef void (*ToggleFunc)(void);
typedef void (*DelayFunc)(uint32_t);
typedef struct
{
void (*Loop)(ToggleFunc toggle, DelayFunc delayFunc, uint8_t iterations, uint32_t delayTime);
} MODClassStruct;
typedef struct {
const char *e_val;
const char *t_val;
const char *r_val;
const char *c_val;
} LoraCommandParams;
extern MODClassStruct MODClass;
extern LoraCommandParams cmd_params[];
#endif