Skip to content

Commit

Permalink
Adapt platformio.ini files to use luos/*
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-rabault committed Dec 13, 2023
1 parent 30cacea commit e701fda
Show file tree
Hide file tree
Showing 81 changed files with 166 additions and 274 deletions.
2 changes: 1 addition & 1 deletion 1_First_Service/Solution/Apps/Blinker_app/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
},
"licence": "MIT",
"dependencies": {
"luos/luos_engine": "^3.0.0"
"luos_engine": "^3.0.0"
}
}
11 changes: 4 additions & 7 deletions 1_First_Service/Solution/Arduino/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,13 @@ build_flags =
-D PIPEHAL=ARDUINO
-D LUOSHAL=ATSAMD21_ARDUINO
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Led
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib

Expand Down
4 changes: 2 additions & 2 deletions 1_First_Service/Solution/NUCLEO-F072RB/lib/Led/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
},
"licence": "MIT",
"dependencies": {
"luos/luos_engine": "^2.6.3"
"luos_engine": "^3.0.0"
}
}
}
11 changes: 4 additions & 7 deletions 1_First_Service/Solution/NUCLEO-F072RB/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,13 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-F0
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Led
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
},
"licence": "MIT",
"dependencies": {
"luos/luos_engine": "^3.0.0"
"luos_engine": "^3.0.0"
}
}
11 changes: 4 additions & 7 deletions 1_First_Service/Solution/NUCLEO-F401RE/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,13 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-F4
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Led
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
},
"licence": "MIT",
"dependencies": {
"luos/luos_engine": "^3.0.0"
"luos_engine": "^3.0.0"
}
}
11 changes: 4 additions & 7 deletions 1_First_Service/Solution/NUCLEO-F410RB/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,13 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-F4
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Led
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
},
"licence": "MIT",
"dependencies": {
"luos/luos_engine": "^3.0.0"
"luos_engine": "^3.0.0"
}
}
11 changes: 4 additions & 7 deletions 1_First_Service/Solution/NUCLEO-G431KB/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,13 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-G431
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Led
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
},
"licence": "MIT",
"dependencies": {
"luos/luos_engine": "^3.0.0"
"luos_engine": "^3.0.0"
}
}
11 changes: 4 additions & 7 deletions 1_First_Service/Solution/NUCLEO-L432KC/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,13 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-L4
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Led
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
2 changes: 1 addition & 1 deletion 1_First_Service/Work_base/Apps/Blinker_app/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
},
"licence": "MIT",
"dependencies": {
"luos/luos_engine": "^3.0.0"
"luos_engine": "^3.0.0"
}
}
11 changes: 4 additions & 7 deletions 1_First_Service/Work_base/Arduino/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,12 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=ARDUINO
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib

Expand Down
11 changes: 4 additions & 7 deletions 1_First_Service/Work_base/NUCLEO-F072RB/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,12 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-F0
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
11 changes: 4 additions & 7 deletions 1_First_Service/Work_base/NUCLEO-F401RE/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,12 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-F4
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
11 changes: 4 additions & 7 deletions 1_First_Service/Work_base/NUCLEO-F410RB/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,12 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-F4
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
11 changes: 4 additions & 7 deletions 1_First_Service/Work_base/NUCLEO-G431KB/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,12 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-G431
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
11 changes: 4 additions & 7 deletions 1_First_Service/Work_base/NUCLEO-L432KC/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,12 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-L4
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Blinker_App
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
2 changes: 1 addition & 1 deletion 2_First_Message/Solution/Arduino/lib/Button/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"licence": "MIT",
"build": {},
"dependencies": {
"luos/luos_engine": "^3.0.0"
"luos_engine": "^3.0.0"
}
}
11 changes: 4 additions & 7 deletions 2_First_Message/Solution/Arduino/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,12 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=ARDUINO
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Button
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"licence": "MIT",
"build": {},
"dependencies": {
"luos/luos_engine": "^3.0.0"
"luos_engine": "^3.0.0"
}
}
11 changes: 4 additions & 7 deletions 2_First_Message/Solution/NUCLEO-F072RB/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,12 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-F0
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Button
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"licence": "MIT",
"build": {},
"dependencies": {
"luos/luos_engine": "^3.0.0"
"luos_engine": "^3.0.0"
}
}
11 changes: 4 additions & 7 deletions 2_First_Message/Solution/NUCLEO-F401RE/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,12 @@ build_flags =
-D PIPEMODE=SERIAL
-D PIPEHAL=NUCLEO-F4
lib_deps =
luos_engine@^3.0.0
robus_network
luos/luos_engine@^3.0.0
luos/robus_network
Button
Pipe
Gate
luos/Pipe
luos/Gate
lib_extra_dirs =
$PROJECT_DIR/../../../../
$PROJECT_DIR/../../../../luos_engine/tool_services
$PROJECT_DIR/../../../../luos_engine/network
$PROJECT_DIR/../Apps
lib
debug_tool = stlink
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"licence": "MIT",
"build": {},
"dependencies": {
"luos/luos_engine": "^3.0.0"
"luos_engine": "^3.0.0"
}
}
Loading

0 comments on commit e701fda

Please sign in to comment.