msg_idle.c 256 B

12345678910111213141516
  1. #include "include.h"
  2. #include "func.h"
  3. #include "func_idle.h"
  4. #if FUNC_IDLE_EN
  5. AT(.text.func.idle.msg)
  6. void func_idle_message(u16 msg)
  7. {
  8. switch (msg) {
  9. default:
  10. func_message(msg);
  11. break;
  12. }
  13. }
  14. #endif // FUNC_IDLE_EN