We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98518b3 commit abd26eeCopy full SHA for abd26ee
Multiprotocol/SGF22_nrf24l01.ino
@@ -192,9 +192,9 @@ uint16_t SGF22_callback()
192
{
193
uint8_t p_len = XN297_ReadEnhancedPayload(packet_in, SGF22_PAYLOAD_SIZE);
194
if(p_len == 3 && packet_in[0] == rx_tx_addr[2] && packet_in[1] == rx_tx_addr[3])
195
- {//packets only received when battery is low: 00 0B 01
+ {//packets: 00 0B 00 -> 00 0B 01
196
telemetry_link = 1;
197
- v_lipo1 = packet_in[2] ? 0 : 255;
+ v_lipo1 = packet_in[2] ? 0 : 255; //2.9V for 1S, 7.0V for 2S
198
}
199
#if 0
200
debug("L %d ",p_len);
0 commit comments