MNRS-BM-BSP/include/ehrenberg/devices/gpio.h

15 lines
242 B
C

#ifndef _BSP_GPIO_H
#define _BSP_GPIO_H
#include <stdint.h>
#include "gen/Apb3Gpio.h"
#define gpio_t apb3gpio_t
inline void gpio_init(gpio_t* reg) {
set_gpio_write(reg, 0);
set_gpio_writeEnable(reg, 0);
}
#endif /* _BSP_GPIO_H */