0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-23 01:58:59 +00:00

🔨 Servo Timer 1 with STM32F103RC_fysetc (#25741)

This commit is contained in:
Scott Lahteine 2023-04-26 14:39:56 -05:00
parent a9c476c55e
commit f48467b2e3
3 changed files with 19 additions and 2 deletions

View file

@ -0,0 +1,16 @@
#!/usr/bin/env bash
#
# Build tests for STM32F103RC_fysetc
#
# exit on first failure
set -e
#
# Build with the default configurations
#
use_example_configs "Creality/Ender-3/FYSETC Cheetah 1.2/BLTouch"
exec_test $1 $2 "Ender-3 with Cheetah 1.2 | BLTouch" "$3"
# clean up
restore_configs

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# #
# Build tests for STM32F103RC FYSETC # Build tests for STM32F103RC_fysetc_maple
# #
# exit on first failure # exit on first failure
@ -10,7 +10,7 @@ set -e
# Build with the default configurations # Build with the default configurations
# #
use_example_configs "Creality/Ender-3/FYSETC Cheetah 1.2/base" use_example_configs "Creality/Ender-3/FYSETC Cheetah 1.2/base"
exec_test $1 $2 "Cheetah 1.2 Configuration" "$3" exec_test $1 $2 "Maple build of Cheetah 1.2 Configuration" "$3"
# clean up # clean up
restore_configs restore_configs

View file

@ -371,6 +371,7 @@ extra_scripts = ${stm32_variant.extra_scripts}
extends = common_STM32F103RC_variant extends = common_STM32F103RC_variant
extra_scripts = ${common_STM32F103RC_variant.extra_scripts} extra_scripts = ${common_STM32F103RC_variant.extra_scripts}
buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py
build_flags = ${common_STM32F103RC_variant.build_flags} -DTIMER_SERVO=TIM1
lib_ldf_mode = chain lib_ldf_mode = chain
debug_tool = stlink debug_tool = stlink
upload_protocol = serial upload_protocol = serial