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.
18 lines
382 B
18 lines
382 B
/*
|
|
* bsp_GPIO.h
|
|
*
|
|
* Created on: Oct 26, 2023
|
|
* Author: shiya
|
|
*/
|
|
|
|
#ifndef INC_BSP_GPIO_H_
|
|
#define INC_BSP_GPIO_H_
|
|
|
|
#include "../../BASE/Inc/BSP/bsp_include.h"
|
|
|
|
uint8_t GF_BSP_GPIO_Init(void);
|
|
void GF_BSP_GPIO_SetIO(uint8_t IO_Index,uint8_t Level);
|
|
uint8_t GF_BSP_GPIO_ReadIO(uint8_t IO_Index);
|
|
uint8_t GF_BSP_GPIO_ToggleIO(uint8_t IO_Index);
|
|
|
|
#endif /* INC_BSP_GPIO_H_ */
|
|
|