Changeset 40798 for titan/titan/frontenddev.h
- Timestamp:
- 08/23/17 21:12:43 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/frontenddev.h
r40788 r40798 488 488 //struct dvb_frontend_event ev; 489 489 fe_status_t status; 490 fe_status_t status_m = 0; 490 491 491 492 int count = 0; … … 505 506 #ifdef MIPSEL 506 507 timer = 2000; 507 #endif508 #ifdef DREAMBOX509 timer = 4000;510 508 #endif 511 509 … … 521 519 ioctl(node->fd, FE_READ_STATUS, &status); 522 520 if(status != 0) 523 debug(200, "status=%d, fe_lock=%d", status, FE_HAS_LOCK); 521 { 522 if(status_m != status) 523 { 524 debug(200, "status=%d, fe_lock=%d", status, FE_HAS_LOCK); 525 status_m = status; 526 } 527 } 524 528 525 529 if(errno == ERANGE) … … 1700 1704 1701 1705 int hierarchy = tpnode->system; //system = hierarchy on DVBT 1706 1707 if(tpnode->system == 1) //system = DVB-T2 then hierarchy = HIERARCHY_AUTO 1708 hierarchy = 4; 1709 1702 1710 //switch(guardinterval) 1703 1711 switch(hierarchy) … … 1984 1992 //to do set voltage --> wenn der Tuner es kann 1985 1993 //fesetvoltage(tuner, SEC_VOLTAGE_13, 10); 1986 p[1].u.data = SYS_DVBT2; 1994 if(realname != NULL && ostrstr(realname, "DVB-T2") != NULL) 1995 p[1].u.data = SYS_DVBT2; 1996 else 1997 p[1].u.data = SYS_DVBT; 1987 1998 break; 1988 1999 }
Note: See TracChangeset
for help on using the changeset viewer.