Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
dernasherbrezon committed Dec 18, 2023
1 parent fa77b1d commit 539156b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_app/main/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ void rx_callback_with_counter(sx127x *device, uint8_t *data, uint16_t data_lengt

TEST_CASE("sx127x_test_fsk_rx_print_registers", "[fsk]") {
TEST_ASSERT_EQUAL_INT(SX127X_OK, sx127x_fixture_create_base(&rx_fixture_config, &fixture));
sx127x_dump_registers(fixture->device);
uint8_t registers[0x80];
sx127x_dump_registers(registers, fixture->device);
}

TEST_CASE("sx127x_test_fsk_rx_variable_length", "[fsk]") {
Expand Down

0 comments on commit 539156b

Please sign in to comment.