ttsTask.h 576 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef __TTS_TASK_H
  2. #define __TTS_TASK_H
  3. //-------------------------------------------------------------------------------
  4. #include <rtl.h>
  5. #define TTS_TASK_STK_SIZE 16
  6. #define TTS_VOICE_SIZE 100
  7. typedef enum
  8. {
  9. ENCODE_ASCII=0,
  10. ENCODE_GBK,
  11. ENCODE_UNICODEBigend,
  12. ENCODE_UNICODE,
  13. ENCODE_UTF8=6
  14. }ENCODE_DEF;
  15. typedef struct
  16. {
  17. unsigned char Update;
  18. ENCODE_DEF Languange;
  19. char voice[TTS_VOICE_SIZE];
  20. char *voiceStatic;
  21. }__attribute__((packed)) TTS_DEF;
  22. __task void TTSTask(void);
  23. extern OS_TID idTTSTask;
  24. extern U64 stkTTSTask[TTS_TASK_STK_SIZE];
  25. #endif