Changeset 36307 for titan/titan/scan.h
- Timestamp:
- 11/24/15 17:42:45 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/scan.h
r36305 r36307 209 209 id = id | ((uint64_t)1 << 32); 210 210 211 /* 211 212 if(gettransponder(id) == NULL) 212 213 { … … 214 215 status.writetransponder = 1; 215 216 } 217 */ 218 // write allways transponder and delete old entry 219 deltransponderbyid(id); 220 tpnode = createtransponder(id, FE_QAM, orbitalpos, frequency, INVERSION_AUTO, symbolrate, 0, fec, modulation, 0, 0, 0); 221 status.writetransponder = 1; 216 222 217 223 debug(500, "nitscan: id=%llu freq=%d sr=%d fec=%d modulation=%d tpnode=%p", id, frequency, symbolrate, fec, modulation, tpnode); … … 309 315 id = id | ((uint64_t)2 << 32); 310 316 317 /* 311 318 if(gettransponder(id) == NULL) 312 319 { … … 314 321 status.writetransponder = 1; 315 322 } 323 */ 324 // write allways transponder and delete old entry 325 deltransponderbyid(id); 326 tpnode = createtransponder(id, FE_OFDM, orbitalpos, frequency, INVERSION_AUTO, bandwidth, lp, hp, modulation, guardinterval, transmission, hierarchy); 327 status.writetransponder = 1; 316 328 317 329 debug(500, "nitscan: id=%llu freq=%d bandwidth=%d hp=%d lp=%d modulation=%d guard=%d trans=%d hierarchy=%d tpnode=%p", id, frequency, bandwidth, hp, lp, modulation, guardinterval, transmission, hierarchy, tpnode);
Note: See TracChangeset
for help on using the changeset viewer.