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.

23 lines
483 B

  1. #include "zgpio.h"
  2. // /**
  3. // * @description: modify gpio level
  4. // * @param {GPIO_TypeDef*} GPIOx
  5. // * @param {uint16_t} GPIO_Pin
  6. // * @param {uint8_t} level : high and low
  7. // * @return {*}
  8. // */
  9. // void zgpio_state_modify(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, uint8_t level){
  10. // HAL_GPIO_WritePin(GPIOx, GPIO_Pin, level);
  11. // }
  12. void debuglightloop(void){
  13. DebugLight_Toggle;
  14. //DebugLight_OFF;
  15. //HAL_Delay(500);
  16. //DebugLight_ON;
  17. //HAL_Delay(500);
  18. }