-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
optimize transfer over SPI during TX
+ Transfer packet size in the same SPI transaction as the main body + Explicitly set FIFO_EMPTY interrupt and remove "append register" that creates 2 SPI transactions. + fix memory leak on linux + add transmit_fsk_raspberrypi example
- Loading branch information
1 parent
eaa7313
commit aea483f
Showing
6 changed files
with
435 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
project(transmit_fsk_raspberrypi C) | ||
|
||
set(CMAKE_C_STANDARD 99) | ||
|
||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../../ ${CMAKE_CURRENT_BINARY_DIR}/sx127x) | ||
|
||
add_executable(transmit_fsk_raspberrypi main.c) | ||
target_link_libraries(transmit_fsk_raspberrypi sx127x) |
Oops, something went wrong.