Changeset 22 in svn
- Timestamp:
- Mar 25, 2015 4:21:28 PM (11 years ago)
- Location:
- trunk/zasc/app_c
- Files:
-
- 3 edited
-
DST_BaseWin.c (modified) (1 diff)
-
DST_DB.c (modified) (1 diff)
-
dst_eroum_interface.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/zasc/app_c/DST_BaseWin.c
r5 r22 134 134 nScanCount = 0; 135 135 // CMB CVT Á֯ļö 639MHz 136 JST_CVT(DST_GetIndexByMHzFrequency(639), DHL_MODULATION_256QAM); // CMB OTC üũ 136 //JST_CVT(DST_GetIndexByMHzFrequency(639), DHL_MODULATION_256QAM); // CMB OTC üũ 137 JST_CVT(DST_GetIndexByMHzFrequency(651), DHL_MODULATION_256QAM); // ±Ý°¹æ¼Û 137 138 this->SetTimer(this, 1, 5000); 138 139 #else // º¸µå¿¡¼ Àü¿øÅ° ´©¸£¸é ¹Ù·Î ²¨Áöµµ·Ï Àӽà ¼öÁ¤ -
trunk/zasc/app_c/DST_DB.c
r2 r22 647 647 return false; 648 648 } 649 650 // Á֯ļö ¼³Á¤¿¡¼ Á¦¿ÜµÈ ä³ÎÀÎÁö? 651 // ÀԷ°ªÀº rfÀÇ index °ªÀÌ´Ù 652 bool DST_DB_IsExceptRF(int rf) 653 { 654 if (DST_EEPROM_GetFrequencySetting() == 0) return false; 655 if (rf < DST_EEPROM_GetMinRF()) return false; 656 if (rf > DST_EEPROM_GetMaxRF()) return false; 657 return true; 658 } 659 660 // ¸î°³ÀÇ Ã¤³ÎÀÌ Á¦¿ÜµÇ¾ú´ÂÁö? 661 int DST_DB_GetExceptRFCount() 662 { 663 if (DST_EEPROM_GetFrequencySetting() == 0) return 0; 664 return DST_EEPROM_GetMaxRF() - DST_EEPROM_GetMinRF() + 1; 665 } 666 667 // Á¦¿ÜµÇÁö ¾ÊÀº ´ÙÀ½ RFÀÇ index°ªÀ» °¡Á®¿Â´Ù 668 int DST_DB_GetNextUnexceptRF(int rf) 669 { 670 if (DST_EEPROM_GetFrequencySetting() == 0) return 0; 671 return DST_EEPROM_GetMaxRF() - DST_EEPROM_GetMinRF() + 1; 672 } -
trunk/zasc/app_c/dst_eroum_interface.c
r4 r22 803 803 return DHL_SI_Monitor(RF, nRequestID, 0xDE1, 0x3C, sectionMode, 0, false); 804 804 #else // CMB ¿¡¼ PID ÇÒ´ç¹Þ°í Á¤È®ÇÑ °ªÀ¸·Î ¼öÁ¤ÇØ¾ß ÇÔ 805 return DHL_SI_Monitor(RF, nRequestID, 0xDF1, 0x3C, sectionMode, 0, false); 805 //return DHL_SI_Monitor(RF, nRequestID, 0xDF1, 0x3C, sectionMode, 0, false); 806 return DHL_SI_Monitor(RF, nRequestID, 0x3A2, 0x3C, sectionMode, 0, false); // ±Ý°¹æ¼Û 806 807 #endif 807 808 }
Note: See TracChangeset
for help on using the changeset viewer.
