#include "zgpio.h" // /** // * @description: modify gpio level // * @param {GPIO_TypeDef*} GPIOx // * @param {uint16_t} GPIO_Pin // * @param {uint8_t} level : high and low // * @return {*} // */ // void zgpio_state_modify(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, uint8_t level){ // HAL_GPIO_WritePin(GPIOx, GPIO_Pin, level); // } void debuglightloop(void){ DebugLight_Toggle; //DebugLight_OFF; //HAL_Delay(500); //DebugLight_ON; //HAL_Delay(500); }