ai_debug_config.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*****************************************************************************
  2. ** ai_debug_config.h: AL Layer Module Debug Level
  3. **
  4. ** Description: This file provides two debug level for each module, one for
  5. ** debug and the other for error. you can turn on/off these messages to print
  6. **
  7. ** Copyright(c) 2011 Sunmedia Technologies - All Rights Reserved
  8. **
  9. ** Author : anlzhao
  10. **
  11. ** $Id: ai_debug_config.h 1913 2011-01-24 07:31:12Z anlzhao_c1 $
  12. *****************************************************************************/
  13. #ifndef AI_DEBUG_CONFIG_H_INCLUDED
  14. #define AI_DEBUG_CONFIG_H_INCLUDED
  15. #include "umf_debug.h"
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /* Configuration for Database component */
  20. #define DATABASE_DEBUG_FLAG (0)
  21. #define DATABASE_ERROR_FLAG (1)
  22. /* Configuration for EPG component */
  23. #define EPG_DEBUG_FLAG (0)
  24. #define EPG_ERROR_FLAG (1)
  25. /* Configuration for SETTINGS component */
  26. //#define SETTING_DBG_FLAG (0)
  27. //#define SETTING_ERROR_FLAG (1)
  28. /* Configuration for Datasaving component */
  29. #define DATASAVING_DBG_FLAG (0)
  30. #define DATASAVING_ERROR_FLAG (1)
  31. /* Configuration for SERVICE component */
  32. #define SERVICE_DBG_FLAG (0)
  33. #define SERVICE_ERROR_FLAG (1)
  34. /* Configuration for Framework component */
  35. #define FW_DBG_FLAG (1)
  36. #define FW_ERROR_FLAG (1)
  37. /* Configuration for Channel Search component */
  38. #define CS_DBG_FLAG (1)
  39. #define CS_ERROR_FLAG (1)
  40. /* Configuration for Time component */
  41. #define TIME_DEBUG_FLAG (0)
  42. #define TIME_ERROR_FLAG (1)
  43. /* Configuration for scheduler component */
  44. #define SCH_DBG_FLAG (0)
  45. #define SCH_ERROR_FLAG (1)
  46. /**< Configuration for subtitle component */
  47. #define SUB_DBG_FLAG (0)
  48. #define SUB_ERROR_FLAG (1)
  49. /**< Configuration for isdb subtitle component */
  50. #define ISDBSUB_DBG_FLAG (0)
  51. #define ISDBSUB_ERROR_FLAG (1)
  52. /**< Configuration for teletext component */
  53. #define TTX_DBG_FLAG (0)
  54. #define TTX_ERROR_FLAG (1)
  55. /**< Configuration for closedcaption component */
  56. #define CC_DBG_FLAG (0)
  57. #define CC_ERROR_FLAG (1)
  58. /**< Configuration for wide screen signaling component */
  59. #define WSS_DBG_FLAG (0)
  60. #define WSS_ERROR_FLAG (1)
  61. /**< Configuration for DVB Monitor component */
  62. #define AL_DVB_MONITOR_DEBUG_FLAG (0)
  63. #define AL_DVB_MONITOR_ERROR_FLAG (1)
  64. /**< Configuration for prog_reminder component */
  65. #define AL_PR_DEBUG_CHK (0)
  66. #define AL_PR_ERROR_CHK (1)
  67. /**< Configuration for PSI Monitor component */
  68. #define AL_PSI_MONITOR_DEBUG_FLAG (1)
  69. #define AL_PSI_MONITOR_ERROR_FLAG (1)
  70. #ifdef __cplusplus
  71. }
  72. #endif
  73. #endif /* AI_DEBUG_CONFIG_H_INCLUDED */
  74. /*****************************************************************************
  75. ** $Rev: 1913 $
  76. **
  77. *****************************************************************************/