You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
303 B
17 lines
303 B
/*
|
|
* 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
|
|
|