Updated non-Arduino example

This commit is contained in:
jgromes 2023-05-16 17:12:45 +01:00
parent c2b9e19551
commit 1a55220020
4 changed files with 5 additions and 5 deletions

View file

@ -6,10 +6,10 @@ project(rpi-sx1261)
# when using debuggers such as gdb, the following line can be used
#set(CMAKE_BUILD_TYPE Debug)
# if you did not build RadioLib as shared library (see README),
# if you did not build RadioLib as shared library (see wiki),
# you will have to add it as source directory
# the following is just an example, yours will likely be different
#add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/../../../../RadioLib" "${CMAKE_CURRENT_BINARY_DIR}/RadioLib")
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/../../../../RadioLib" "${CMAKE_CURRENT_BINARY_DIR}/RadioLib")
# add the executable
add_executable(${PROJECT_NAME} main.cpp)

View file

@ -2,7 +2,7 @@
#define PI_HAL_H
// include RadioLib
#include <RadioLib/RadioLib.h>
#include <RadioLib.h>
// include the library for Raspberry GPIO pins
#include "pigpio.h"

View file

@ -4,5 +4,5 @@ set -e
mkdir -p build
cd build
cmake -G "CodeBlocks - Unix Makefiles" ..
make -j4
make
cd ..

View file

@ -14,7 +14,7 @@
*/
// include the library
#include <RadioLib/RadioLib.h>
#include <RadioLib.h>
// include the hardware abstraction layer
#include "PiHal.h"