8 lines
160 B
Plaintext
8 lines
160 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
export PROJECT=stm32f429i-disco-test
|
||
|
|
|
||
|
|
make -j8 &&
|
||
|
|
openocd -f board/stm32f429disc1.cfg \
|
||
|
|
-c "program build-$PROJECT/lk.bin reset exit 0x08000000"
|