Skip to content

Commit

Permalink
quickstart: Support updated F429discovery board
Browse files Browse the repository at this point in the history
The disco1: board has an updated STLink-v2.1. This provides serial and
mass storage capabilities over the USB link
  • Loading branch information
kbingham committed Feb 16, 2016
1 parent 8d44978 commit 74edfdd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ KERNELDIR=""
# Either uncomment one of the boards below, or add your own"
BOARD=""
#BOARD="stm32f429discovery"
#BOARD="stm32f429discovery1"
#BOARD="stm32f469discovery"


Expand Down Expand Up @@ -45,6 +46,9 @@ init()
if [ "$BOARD" == "stm32f429discovery" ]; then
BOARDAFBOOT=stm32f429i-disco
BOARDDTB=stm32f429-disco
elif [ "$BOARD" == "stm32f429discovery1" ]; then
BOARDAFBOOT=stm32f429i-disco1
BOARDDTB=stm32f429-disco
elif [ "$BOARD" == "stm32f469discovery" ]; then
echo "###################################################"
echo "Don't forget to make the kernel changes detailed at"
Expand Down

0 comments on commit 74edfdd

Please sign in to comment.