11 lines
239 B
C
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
|