spelling: receive

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:33:57 -05:00
parent a58187577d
commit a0222e963c
4 changed files with 4 additions and 4 deletions

View file

@ -174,7 +174,7 @@ static void prv_response_cb(HciStatusCode status, const uint8_t *payload) {
// RX Test, need to keep track of received packets
// Payload is as follows:
// | 1 byte | 2 bytes |
// | success | recieved packets |
// | success | received packets |
// So we want grab a uint16_t from 1 byte into the payload
const uint16_t *received_packets = (uint16_t *)(payload + 1);
data->rx_test_received_packets = *received_packets;