| [2] | 1 | #ifndef __DST_COMMOM_H__ |
|---|
| 2 | #define __DST_COMMON_H__ |
|---|
| 3 | |
|---|
| 4 | #include "dst_eroum_interface.h" |
|---|
| 5 | #include "DST_EEPROM.h" |
|---|
| 6 | #include "DST_ISDBT_ChannelTask.h" |
|---|
| 7 | |
|---|
| 8 | // ŽºÅ© Á¤ÀÇ |
|---|
| 9 | #define PRI_LOWEST 100 |
|---|
| 10 | #define PRI_LOW 110 |
|---|
| 11 | #define PRI_NORMAL 120 |
|---|
| 12 | #define PRI_HIGH 130 |
|---|
| 13 | #define PRI_HIGHEST 140 |
|---|
| 14 | |
|---|
| 15 | #define WIN_MGR_TASK_PRIORITY 150//120 |
|---|
| 16 | #define WIN_MGR_TASK_STACKSIZE (32*1024) |
|---|
| 17 | |
|---|
| 18 | #define OSD_Lang 0 |
|---|
| 19 | |
|---|
| 20 | #define APP_TASK_PRIO_KEYPAD 31 |
|---|
| 21 | #define APP_TASK_PRIO_IR 32 |
|---|
| 22 | #define APP_TASK_USER_DATA 36 |
|---|
| 23 | #define APP_TASK_PRIO_CHANNEL 37 |
|---|
| 24 | #define APP_TASK_PRIO_WIN_MGR 38 |
|---|
| 25 | |
|---|
| 26 | #define APP_TASK_PRIO_SIMPLE 39 |
|---|
| 27 | #define APP_TASK_PRIO_CC_MGR 42 |
|---|
| 28 | #define APP_TASK_PRIO_EEPROM_SYNC 43 |
|---|
| 29 | #define APP_TASK_PRIO_RF_UPDATE_WRITE 44 |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | char* DST_GetAppShortVersion(); |
|---|
| 34 | |
|---|
| 35 | #define noError 0 |
|---|
| 36 | |
|---|
| 37 | //// º¼·ý ¾÷´Ù¿î ŰÁö¿¬ |
|---|
| 38 | #define KEY_DELAY_VOLUME 300 |
|---|
| 39 | #define KEY_REPEAT_VOLUME 90 |
|---|
| 40 | |
|---|
| 41 | //// ä³Î ¾÷´Ù¿î Ű Áö¿¬ |
|---|
| 42 | #define KEY_DELAY_CHANNEL 400 |
|---|
| 43 | //#define KEY_REPEAT_CHANNEL 200 |
|---|
| 44 | |
|---|
| 45 | //// ¸Þ´º ³×ºñ°ÔÀÌ¼Ç Å° Áö¿¬ |
|---|
| 46 | #define KEY_DELAY_MENU 400 |
|---|
| 47 | #define KEY_REPEAT_MENU 400 |
|---|
| 48 | |
|---|
| 49 | int DST_GetScreenHeight(); |
|---|
| 50 | int DST_GetScreenWidth(); |
|---|
| 51 | |
|---|
| 52 | #define WAITING_PERIOD (3*DST_OS_GetTicksPerSecond()) |
|---|
| 53 | |
|---|
| 54 | #define fontTitleSize 25 |
|---|
| 55 | #define fontItemSize 23 |
|---|
| 56 | |
|---|
| 57 | #define RF_COUNT 132 // 2~135¹ø±îÁö 132°³ |
|---|
| 58 | #define MAX_CHANNEL_NUMBER 250 // ÃÖ´ë ä³Î °¹¼ö |
|---|
| 59 | |
|---|
| 60 | #define CHANNEL_EDIT_SUPPORT 0 |
|---|
| 61 | #define EPG_SUPPORT 0 |
|---|
| 62 | #define CVCT_SUPPORT 0 |
|---|
| 63 | |
|---|
| 64 | #endif |
|---|