Changeset 22 in svn


Ignore:
Timestamp:
Mar 25, 2015 4:21:28 PM (11 years ago)
Author:
megakiss
Message:

금강방송 OTC 651MHz 930(0x3A2) 931(0x3A3)

Location:
trunk/zasc/app_c
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/zasc/app_c/DST_BaseWin.c

    r5 r22  
    134134                                nScanCount = 0; 
    135135                                // 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); // ±Ý°­¹æ¼Û 
    137138                                this->SetTimer(this, 1, 5000); 
    138139#else   // º¸µå¿¡¼­ Àü¿øÅ° ´©¸£¸é ¹Ù·Î ²¨Áöµµ·Ï Àӽà ¼öÁ¤ 
  • trunk/zasc/app_c/DST_DB.c

    r2 r22  
    647647        return false; 
    648648} 
     649 
     650// Á֯ļö ¼³Á¤¿¡¼­ Á¦¿ÜµÈ ä³ÎÀÎÁö? 
     651// ÀԷ°ªÀº rfÀÇ index °ªÀÌ´Ù 
     652bool 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// ¸î°³ÀÇ Ã¤³ÎÀÌ Á¦¿ÜµÇ¾ú´ÂÁö? 
     661int 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°ªÀ» °¡Á®¿Â´Ù 
     668int 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  
    803803        return DHL_SI_Monitor(RF, nRequestID, 0xDE1, 0x3C, sectionMode, 0, false); 
    804804#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); // ±Ý°­¹æ¼Û 
    806807#endif 
    807808} 
Note: See TracChangeset for help on using the changeset viewer.