mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
10 lines
194 B
C
10 lines
194 B
C
#ifndef _CH582_UTILS_H_
|
|
#define _CH582_UTILS_H_
|
|
#include "stdint.h"
|
|
|
|
uint8_t gpio_get_group(char *pin);
|
|
uint32_t gpio_get_pin(char *pin);
|
|
uint32_t gpio_get_mode(char *mode, char *pull);
|
|
|
|
#endif
|