STM32F103.. reorganization, SKR mini fix (#15398)
This commit is contained in:
committed by
Scott Lahteine
parent
5e9898600b
commit
43d6e9fa43
@ -5,4 +5,4 @@ for define in env['CPPDEFINES']:
|
||||
if define[0] == "VECT_TAB_ADDR":
|
||||
env['CPPDEFINES'].remove(define)
|
||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000"))
|
||||
env.Replace(LDSCRIPT_PATH="buildroot/share/PlatformIO/ldscripts/STM32F1_SKR_MINI.ld")
|
||||
env.Replace(LDSCRIPT_PATH="buildroot/share/PlatformIO/ldscripts/STM32F103RC_SKR_MINI.ld")
|
@ -5,7 +5,7 @@ for define in env['CPPDEFINES']:
|
||||
if define[0] == "VECT_TAB_ADDR":
|
||||
env['CPPDEFINES'].remove(define)
|
||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08010000"))
|
||||
env.Replace(LDSCRIPT_PATH="buildroot/share/PlatformIO/ldscripts/longer_STM32.ld")
|
||||
env.Replace(LDSCRIPT_PATH="buildroot/share/PlatformIO/ldscripts/STM32F103VE_longer.ld")
|
||||
|
||||
# Rename ${PROGNAME}.bin and save it as 'project.bin' (No encryption on the Longer3D)
|
||||
def encrypt(source, target, env):
|
@ -28,8 +28,8 @@ case $TESTENV in
|
||||
m128) TESTENV='megaatmega1280' ;;
|
||||
m256) TESTENV='megaatmega2560' ;;
|
||||
mega) TESTENV='megaatmega2560' ;;
|
||||
stm) TESTENV='STM32F103R' ;;
|
||||
f1) TESTENV='STM32F103R' ;;
|
||||
stm) TESTENV='STM32F103RE' ;;
|
||||
f1) TESTENV='STM32F103RE' ;;
|
||||
f4) TESTENV='STM32F4' ;;
|
||||
f7) TESTENV='STM32F7' ;;
|
||||
teensy) TESTENV='teensy31' ;;
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# Build tests for STM32F1 malyanM200
|
||||
# Build tests for STM32F103CB Malyan M200
|
||||
#
|
||||
|
||||
# exit on first failure
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# Build tests for STM32F1 Bigtreetech (SKR Mini v1.1)
|
||||
# Build tests for STM32F103RC Bigtreetech (SKR Mini v1.1)
|
||||
#
|
||||
|
||||
# exit on first failure
|
19
buildroot/share/tests/STM32F103RC_bigtree_USB-tests
Normal file
19
buildroot/share/tests/STM32F103RC_bigtree_USB-tests
Normal file
@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# Build tests for STM32F103RC Bigtreetech (SKR Mini v1.1)
|
||||
#
|
||||
|
||||
# exit on first failure
|
||||
set -e
|
||||
|
||||
#
|
||||
# Build with the default configurations
|
||||
#
|
||||
restore_configs
|
||||
opt_set MOTHERBOARD BOARD_BIGTREE_SKR_MINI_V1_1
|
||||
opt_set SERIAL_PORT 1
|
||||
opt_set SERIAL_PORT_2 -1
|
||||
exec_test $1 $2 "Bigtreetech SKR Mini v1.1 - Basic Configuration"
|
||||
|
||||
# clean up
|
||||
restore_configs
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# Build tests for STM32F1 FYSETC
|
||||
# Build tests for STM32F103RC FYSETC
|
||||
#
|
||||
|
||||
# exit on first failure
|
@ -10,7 +10,7 @@ set -e
|
||||
# Build with the default configurations
|
||||
#
|
||||
restore_configs
|
||||
opt_set MOTHERBOARD BOARD_STM32F103R
|
||||
opt_set MOTHERBOARD BOARD_STM32F103RE
|
||||
opt_set EXTRUDERS 2
|
||||
opt_set SERIAL_PORT -1
|
||||
opt_enable EEPROM_SETTINGS EEPROM_CHITCHAT REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT \
|
Reference in New Issue
Block a user