add threads

This commit is contained in:
wmano
2025-08-28 23:32:26 +08:00
parent fa4d12b6e0
commit e26e47548f
13 changed files with 1330 additions and 2205 deletions
@@ -0,0 +1,18 @@
#ifndef __CHRG_SOUTH_H__
#define __CHRG_SOUTH_H__
#include <rtthread.h>
#define THRED_NAME_SOUTH "thr_sou"
struct chrg_south_t {
rt_thread_t tid;
const char *name;
};
extern struct chrg_south_t chrgsou;
#endif