msg_speak.c 265 B

1234567891011121314151617
  1. #include "include.h"
  2. #include "func.h"
  3. #include "func_speaker.h"
  4. #if FUNC_SPEAKER_EN
  5. void func_speaker_message(u16 msg){
  6. switch (msg) {
  7. case KU_PLAY:
  8. break;
  9. default:
  10. func_message(msg);
  11. break;
  12. }
  13. }
  14. #endif // FUNC_SPEAKER_EN