Emmanuel BENOîT
a269231b03
* Ignore list * External dependency on ChibiOS * A few lines of Bash export's I need when working on this * Templates
11 lines
239 B
Bash
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
|
|
}
|