Led.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #ifndef __LED_H_
  2. #define __LED_H_
  3. #define LED_SEL_RED 0
  4. #define LED_SEL_BLUE 1
  5. #define MODEM_LED1_PIN GPIO_Pin_8
  6. #define MODEM_LED1_PORT GPIOB
  7. #define MODEM_LED2_PIN GPIO_Pin_9
  8. #define MODEM_LED2_PORT GPIOB
  9. #define MODEM_LED1_HIGH (MODEM_LED1_PORT->BSRR = MODEM_LED1_PIN)
  10. #define MODEM_LED1_LOW (MODEM_LED1_PORT->BRR = MODEM_LED1_PIN)
  11. #define MODEM_LED2_HIGH (MODEM_LED2_PORT->BSRR = MODEM_LED2_PIN)
  12. #define MODEM_LED2_LOW (MODEM_LED2_PORT->BRR = MODEM_LED2_PIN)
  13. typedef enum {
  14. NotBright=0, //均不亮
  15. RedBright, //红灯常亮
  16. RedFastFlash, //红灯快闪
  17. RedSlowFlash, //红灯慢闪
  18. BlueBright, //蓝灯常亮
  19. BlueFastFlash, //蓝灯快闪
  20. BlueSlowFlash, //蓝灯慢闪
  21. RedBlueBright, //红蓝常亮
  22. RedBlueFastFlash, //红蓝快闪
  23. RedBlueSlowFlash //红蓝慢闪
  24. }LED_STATUS;
  25. typedef enum{
  26. IndModemErr=0, //模块错误
  27. IndNoNet, //无网络
  28. IndStandby, //待机
  29. IndRX, //接收
  30. IndTX //发送
  31. }LED_INDICATOR;
  32. extern LED_INDICATOR g_LedInd;
  33. extern unsigned char sucRedLedFlash;
  34. extern unsigned char sucRedLedSleep;
  35. void LedInit(void);
  36. void LedProcess(unsigned char reset);
  37. void SetLedIndicator(LED_INDICATOR LedInd);
  38. void SetLedStatus(LED_STATUS LedStatus);
  39. #endif