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