mirror of
https://github.com/eclipse/upm.git
synced 2025-07-03 10:21:19 +03:00
sx1276: Initial implementation
This driver was developed using an SX1276 based shield on the Galileo G2. It requires 3.3v of operation. It does not work with Edison, due to SPI issues. Signed-off-by: Jon Trulson <jtrulson@ics.com>
This commit is contained in:

committed by
Mihai Tudor Panu

parent
4de9734f0a
commit
2a1af1399a
@ -155,6 +155,8 @@ add_executable (bma220-example bma220.cxx)
|
||||
add_executable (dfrph-example dfrph.cxx)
|
||||
add_executable (mcp9808-example mcp9808.cxx)
|
||||
add_executable (groveultrasonic-example groveultrasonic.cxx)
|
||||
add_executable (sx1276-lora-example sx1276-lora.cxx)
|
||||
add_executable (sx1276-fsk-example sx1276-fsk.cxx)
|
||||
|
||||
include_directories (${PROJECT_SOURCE_DIR}/src/hmc5883l)
|
||||
include_directories (${PROJECT_SOURCE_DIR}/src/grove)
|
||||
@ -274,6 +276,7 @@ include_directories (${PROJECT_SOURCE_DIR}/src/bma220)
|
||||
include_directories (${PROJECT_SOURCE_DIR}/src/dfrph)
|
||||
include_directories (${PROJECT_SOURCE_DIR}/src/mcp9808)
|
||||
include_directories (${PROJECT_SOURCE_DIR}/src/groveultrasonic)
|
||||
include_directories (${PROJECT_SOURCE_DIR}/src/sx1276)
|
||||
|
||||
target_link_libraries (hmc5883l-example hmc5883l ${CMAKE_THREAD_LIBS_INIT})
|
||||
target_link_libraries (groveled-example grove ${CMAKE_THREAD_LIBS_INIT})
|
||||
@ -430,3 +433,5 @@ target_link_libraries (bma220-example bma220 ${CMAKE_THREAD_LIBS_INIT})
|
||||
target_link_libraries (dfrph-example dfrph ${CMAKE_THREAD_LIBS_INIT})
|
||||
target_link_libraries (mcp9808-example mcp9808 ${CMAKE_THREAD_LIBS_INIT})
|
||||
target_link_libraries (groveultrasonic-example groveultrasonic ${CMAKE_THREAD_LIBS_INIT})
|
||||
target_link_libraries (sx1276-lora-example sx1276 ${CMAKE_THREAD_LIBS_INIT})
|
||||
target_link_libraries (sx1276-fsk-example sx1276 ${CMAKE_THREAD_LIBS_INIT})
|
||||
|
Reference in New Issue
Block a user