stm32f4/setup-env.sh
Emmanuel BENOîT a269231b03 "Project" created
* Ignore list
* External dependency on ChibiOS
* A few lines of Bash export's I need when working on this
* Templates
2012-10-30 18:17:52 +01:00

11 lines
239 B
Bash

#
# Note to self: source this.
#
ARM_TC_PREFIX=/opt/ARM/arm-linaro-eabi-4.6
export PATH=$PATH:$ARM_TC_PREFIX/bin
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ARM_TC_PREFIX/lib
function flash_prog() {
st-flash write build/$1.bin 0x8000000
}