SGF22: Fix none working IDs

This commit is contained in:
pascallanger 2024-03-21 16:33:16 +01:00
parent 2e3520acad
commit f117105124

View File

@ -91,6 +91,8 @@ static void __attribute__((unused)) SGF22_send_packet()
static void __attribute__((unused)) SGF22_initialize_txid()
{
rx_tx_addr[2] &=0x7F;
rx_tx_addr[3] &=0x7F;
uint8_t val = (( (uint16_t) rx_tx_addr[2] << 8 ) | rx_tx_addr[3])%5;
const uint8_t hop[5][4] =
@ -110,8 +112,8 @@ static void __attribute__((unused)) SGF22_initialize_txid()
if(val ) hopping_frequency[3]++;*/
#ifdef FORCE_SGF22_ORIGINAL_ID
rx_tx_addr[2] = 0x1F;
rx_tx_addr[3] = 0x61;
rx_tx_addr[2] = 0x1F; // TX2: 27
rx_tx_addr[3] = 0x61; // TX2: 51
memcpy(hopping_frequency,"\x15\x34\x24\x44", SGF22_RF_NUM_CHANNELS); //Original dump=>21=0x15,52=0x34,36=0x24,68=0x44
#endif
#if 0
@ -163,7 +165,7 @@ void SGF22_init()
SGF22_initialize_txid();
SGF22_RF_init();
bind_counter=SGF22_BIND_COUNT;
packet_sent = packet_count = 0x26;
packet_sent = packet_count = 0x26; // TX2: 26
phase = 0;
}