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 7d13241 commit caea64cCopy full SHA for caea64c
CMakeLists.txt
@@ -4,5 +4,5 @@ include(pico_sdk_import.cmake)
4
5
project(microcontroller_firmware)
6
7
-add_subdirectory("src/dshot")
8
-add_subdirectory("src/pwm")
+add_subdirectory("src/dshot" "dshot")
+add_subdirectory("src/pwm" "pwm")
Makefile
@@ -13,10 +13,10 @@ build:
13
cmake --build $(BUILD_DIR)
14
15
flash-dshot: build
16
- picotool load $(BUILD_DIR)/src/dshot/dshot.uf2 -f
+ picotool load $(BUILD_DIR)/dshot/dshot.uf2 -f
17
18
flash-pwm: build
19
- picotool load $(BUILD_DIR)/src/pwm/pwm.uf2 -f
+ picotool load $(BUILD_DIR)/pwm/pwm.uf2 -f
20
21
clean:
22
rm -rf $(BUILD_DIR)
0 commit comments