Files
-
0__oldProject / _boardSourceOld / V1 / HW / scorBoardV1 / Scorebot / documentation schema.sch
-
0__oldProject / _boardSourceOld / V1 / HW / scorBoardV1 / Scorebot / matherBoard.brd
-
0__oldProject / _boardSourceOld / V1 / HW / scorBoardV1 / Scorebot / matherBoard.sch
-
0__oldProject / _boardSourceOld / V1 / HW / scorBoardV1 / Scorebot / motordDrive_BreakOut.sch
-
HW_Source / ScoreBoard-V2 / ScoreBoard-V2.brd
-
HW_Source / ScoreBoard-V2 / ScoreBoard-V2.sch
Last update 4 years 1 month
by
alfystar
FilesSW_SourceScorbot-V2_UIctrlSrc | |
---|---|
.. | |
pidCtrl | |
CMakeLists.txt | |
ctrlSource.cpp | |
ctrlSource.h |
CMakeLists.txt# Le librerie Comuni DEVONO essere PRE-Incluse get_filename_component(libName ${CMAKE_CURRENT_SOURCE_DIR} NAME) if (NOT TARGET ${libName}) add_library(${libName} ctrlSource.h ctrlSource.cpp ) target_include_directories(${libName} PUBLIC ".") add_subdirectory(pidCtrl) target_link_libraries(${libName} PUBLIC pidCtrl) target_link_libraries(${libName} PUBLIC dataTransfertPrimitive) target_link_libraries(${libName} PUBLIC uartSubSystem) target_link_libraries(${libName} PUBLIC timeOp) message("[${libName}] subsystem included") endif ()