mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
21 lines
238 B
C
21 lines
238 B
C
#ifndef __STM32__COMMON__H
|
|
#define __STM32__COMMON__H
|
|
#include "PikaObj.h"
|
|
#include <stdint.h>
|
|
|
|
#include "driver/gpio.h"
|
|
|
|
// #if CONFIG_IDF_TARGET_ESP32
|
|
|
|
// #endif
|
|
|
|
|
|
int getGpioPin(char *pin);
|
|
uint32_t getPinMode(char* mode);
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|