/* * gpio.h * * Created on: 25.10.2020 * Author: ftobler */ #ifndef APP_GPIO_H_ #define APP_GPIO_H_ uint8_t gpio_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin); void gpio_SetPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin); void gpio_ResetPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin); #endif