We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8631d6 commit 67c5891Copy full SHA for 67c5891
.gitignore
@@ -297,5 +297,4 @@ vs-readme.txt
297
# Arduino and platform io directories and files that should not be committed
298
**/.pio
299
.development
300
-CMakeLists*
301
cmake-build-*
cmake/CMakeLists.txt
@@ -0,0 +1,16 @@
1
+add_library(TaskManagerIO
2
+ ../src/SimpleSpinLock.cpp
3
+ ../src/TaskManagerIO.cpp
4
+ ../src/TaskTypes.cpp
5
+ ../src/TmLongSchedule.cpp
6
+)
7
+
8
+target_compile_definitions(TaskManagerIO
9
+ PUBLIC BUILD_FOR_PICO_CMAKE=1 BUILD_PICO_FORCE_UART=1 IO_LOGGING_DEBUG=1
10
11
12
+target_include_directories(TaskManagerIO PUBLIC
13
+ ${PROJECT_SOURCE_DIR}/TaskManagerIO/src
14
15
16
+target_link_libraries(TaskManagerIO PUBLIC pico_stdlib pico_sync)
0 commit comments