You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uint8_tcodingRate; //5 to 8. Higher coding rates ensure less packets dropped.
386
+
uint8_tspreadFactor; //6 to 12. Use higher factor for longer range.
387
+
uint16_tpreambleLength; //Number of symbols. Different lengths does *not* guarantee a remote radio privacy. 8 to 11 works. 8 to 15 drops some. 8 to 20 is silent.
388
+
uint32_ttxToRxUsec; //TX transactionComplete to RX transactionComplete in microseconds
389
+
uint16_tp2pHbMsec; //ms before sending HEARTBEAT to see if link is active
390
+
uint16_tvcHbMsec; //ms before sending HEARTBEAT to see if link is active
uint8_tradioBroadcastPower_dbm=TX_POWER_DB; //Transmit power in dBm. Max is 30dBm (1W), min is 14dBm (25mW).
405
-
uint8_tradioCodingRate=8; //5 to 8. Higher coding rates ensure less packets dropped.
406
-
uint8_tradioSpreadFactor=9; //6 to 12. Use higher factor for longer range.
450
+
uint8_tradioCodingRate=0;
451
+
uint8_tradioSpreadFactor=0;
407
452
uint8_tradioSyncWord=18; //18 = 0x12 is default for custom/private networks. Different sync words does *not* guarantee a remote radio will not get packet.
408
453
409
-
uint16_tradioPreambleLength=8; //Number of symbols. Different lengths does *not* guarantee a remote radio privacy. 8 to 11 works. 8 to 15 drops some. 8 to 20 is silent.
454
+
uint16_tradioPreambleLength=0; //Number of symbols. Different lengths does *not* guarantee a remote radio privacy. 8 to 11 works. 8 to 15 drops some. 8 to 20 is silent.
410
455
boolautoTuneFrequency= false; //Based on the last packets frequency error, adjust our next transaction frequency
411
456
412
457
//----------------------------------------
413
458
//Radio protocol parameters
414
459
//----------------------------------------
415
460
416
-
uint8_toperatingMode=MODE_POINT_TO_POINT; //Receiving unit will check netID and ACK. If set to false, receiving unit doesn't check netID or ACK.
461
+
uint8_toperatingMode=DEFAULT_OPERATING_MODE; //Receiving unit will check netID and ACK. If set to false, receiving unit doesn't check netID or ACK.
417
462
418
463
uint8_tselectLedUse=LEDS_RSSI; //Select LED use
419
464
boolserver= false; //Default to being a client, enable server for multipoint, VC and training
0 commit comments