mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
13 lines
249 B
C
13 lines
249 B
C
|
#ifndef __STM32__COMMON__H
|
||
|
#define __STM32__COMMON__H
|
||
|
|
||
|
#ifdef STM32G070xx
|
||
|
#include "stm32g0xx_hal.h"
|
||
|
#endif
|
||
|
|
||
|
GPIO_TypeDef* getGpioPort(char* pin);
|
||
|
uint16_t getGpioPin(char* pin);
|
||
|
uint32_t getPinMode(char* mode);
|
||
|
uint8_t enableClk(char* pin);
|
||
|
|
||
|
#endif
|