Files
stm32-cnn/SYSTEM/gpio/gpio.h
2024-12-19 14:06:05 +08:00

11 lines
239 B
C

#ifndef _GPIO_H
#define _GPIO_H
#include "stm32f4xx.h" // Device header
#define PPS_PIN GPIO_PIN_5
#define PPS_GPIO_PORT GPIOB
extern void GPIO_Init(void);
#endif