Revert "移植与电子模块通信相关代码"

This reverts commit 8e3a140bec
This commit is contained in:
andy
2023-10-06 10:52:48 +00:00
parent 8e3a140bec
commit 8a263181ce
77 changed files with 1168 additions and 13331 deletions

28
source/task/input.h Normal file
View File

@@ -0,0 +1,28 @@
#ifndef input_h__
#define input_h__
#include "rtthread.h"
#include "transmit.h"
#include "signal.h"
#include "bytearray.h"
int input_set_callback_always(int channel,int state_to_call,void (*fun)(void *t),void *t);
int input_set_callback_once(int channel,int state_to_call,void (*fun)(void *t),void *t);
#endif