Skip to content

Commit

Permalink
Fix bug found by Slackware!
Browse files Browse the repository at this point in the history
  • Loading branch information
jamisonderek committed Nov 15, 2023
1 parent 6934ea5 commit ddb07ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gpio/spi_demo/spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void read_w25q32_spi() {
command_read_memory[3],
data_response_str);
} else {
FURI_LOG_E(TAG, "FAILED - read_id_spi failed.");
FURI_LOG_E(TAG, "FAILED - furi_hal_spi_bus_trx failed.");
}

furi_hal_spi_release(spi);
Expand Down
2 changes: 1 addition & 1 deletion gpio/spi_demo/spi_v2.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ void read_w25q32_spi_v2() {
read_memory_address[2],
data_response_str);
} else {
FURI_LOG_E(TAG, "FAILED - read_id_spi failed.");
FURI_LOG_E(TAG, "FAILED - furi_hal_spi_bus_tx or furi_hal_spi_bus_rx failed.");
}

furi_hal_spi_release(spi);
Expand Down

0 comments on commit ddb07ea

Please sign in to comment.