This commit is contained in:
Qiea
2024-12-19 14:06:05 +08:00
parent 1c0f3b676f
commit dcd484c1bd
58 changed files with 14859 additions and 863 deletions

10
SYSTEM/gpio/gpio.h Normal file
View File

@@ -0,0 +1,10 @@
#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