aboutsummaryrefslogtreecommitdiff
path: root/src/lib/rc/st24.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/rc/st24.h')
-rw-r--r--src/lib/rc/st24.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/rc/st24.h b/src/lib/rc/st24.h
index 1876eabc5..454234601 100644
--- a/src/lib/rc/st24.h
+++ b/src/lib/rc/st24.h
@@ -155,9 +155,9 @@ uint8_t st24_common_crc8(uint8_t *ptr, uint8_t len);
* @param rx_count pointer to a byte where the receive count of packets signce last wireless frame is written back to
* @param channels pointer to a datastructure of size max_chan_count where channel values (12 bit) are written back to
* @param max_chan_count maximum channels to decode - if more channels are decoded, the last n are skipped and success (0) is returned
- * @return 0 for success (a decoded packet), 1 for no packet yet (accumulating), 3 for out of sync, 4 for checksum error
+ * @return 0 for success (a decoded packet), 1 for no packet yet (accumulating), 2 for unknown packet, 3 for out of sync, 4 for checksum error
*/
-__EXPORT uint8_t st24_decode(uint8_t byte, uint8_t *rssi, uint8_t *rx_count, uint16_t *channel_count,
+__EXPORT int st24_decode(uint8_t byte, uint8_t *rssi, uint8_t *rx_count, uint16_t *channel_count,
uint16_t *channels, uint16_t max_chan_count);
__END_DECLS