Initial commit

This commit is contained in:
CChen616
2024-03-19 15:48:17 +08:00
parent 2ae601ba66
commit 1023fb5796
82 changed files with 43002 additions and 1 deletions

13
include/mks_gpio.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef MKS_GPIO_H
#define MKS_GPIO_H
static int gpio_config(const char *attr, const char *val);
int set_GPIO1_C5_low();
int set_GPIO1_C5_high();
int init_GPIO1_B2();
void *monitor_GPIO1_B2(void *arg);
int init_GPIO1_C3();
void *monitor_GPIO1_C3(void *arg);
int set_GPIO1_B3_low();
#endif