mirror of
https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
synced 2025-02-05 01:48:13 +00:00
OMP: fix?
This commit is contained in:
parent
b1e4daf1c2
commit
15e37cefee
@ -19,7 +19,7 @@
|
|||||||
#define VERSION_MAJOR 1
|
#define VERSION_MAJOR 1
|
||||||
#define VERSION_MINOR 3
|
#define VERSION_MINOR 3
|
||||||
#define VERSION_REVISION 1
|
#define VERSION_REVISION 1
|
||||||
#define VERSION_PATCH_LEVEL 56
|
#define VERSION_PATCH_LEVEL 57
|
||||||
|
|
||||||
//******************
|
//******************
|
||||||
// Protocols
|
// Protocols
|
||||||
|
@ -79,7 +79,6 @@ static void __attribute__((unused)) OMP_send_packet()
|
|||||||
packet[13] = channel>>8;
|
packet[13] = channel>>8;
|
||||||
|
|
||||||
//unknown
|
//unknown
|
||||||
//packet[13] = 0x00;
|
|
||||||
//packet[14] = 0x00;
|
//packet[14] = 0x00;
|
||||||
packet[15] = 0x04;
|
packet[15] = 0x04;
|
||||||
}
|
}
|
||||||
@ -115,7 +114,10 @@ uint16_t OMP_callback()
|
|||||||
{
|
{
|
||||||
if(IS_BIND_IN_PROGRESS)
|
if(IS_BIND_IN_PROGRESS)
|
||||||
if(--bind_counter==0)
|
if(--bind_counter==0)
|
||||||
|
{
|
||||||
BIND_DONE;
|
BIND_DONE;
|
||||||
|
XN297L_SetTXAddr(rx_tx_addr, 5);
|
||||||
|
}
|
||||||
OMP_send_packet();
|
OMP_send_packet();
|
||||||
#ifdef MULTI_SYNC
|
#ifdef MULTI_SYNC
|
||||||
telemetry_set_input_sync(OMP_PACKET_PERIOD);
|
telemetry_set_input_sync(OMP_PACKET_PERIOD);
|
||||||
@ -128,7 +130,10 @@ uint16_t initOMP()
|
|||||||
OMP_initialize_txid();
|
OMP_initialize_txid();
|
||||||
OMP_init();
|
OMP_init();
|
||||||
hopping_frequency_no = 0;
|
hopping_frequency_no = 0;
|
||||||
bind_counter=OMP_BIND_COUNT;
|
if(IS_BIND_IN_PROGRESS)
|
||||||
|
bind_counter=OMP_BIND_COUNT;
|
||||||
|
else
|
||||||
|
XN297L_SetTXAddr(rx_tx_addr, 5);
|
||||||
return OMP_INITIAL_WAIT;
|
return OMP_INITIAL_WAIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user