| David Brown | 5153bd6 | 2017-01-06 11:16:53 -0700 | [diff] [blame] | 1 | # Copy this file to target.sh and modify to suit your needs |
| 2 | |||||
| 3 | if true; then | ||||
| 4 | BOARD=96b_carbon | ||||
| 5 | SOC=STM32F401RE | ||||
| 6 | BASE_BOOT=0x08000000 | ||||
| 7 | BASE_SLOT0=0x08020000 | ||||
| 8 | BASE_SLOT1=0x08040000 | ||||
| 9 | else | ||||
| 10 | BOARD=frdm_k64f | ||||
| 11 | SOC=MK64FN1M0VLL12 | ||||
| 12 | BASE_BOOT=0x00000000 | ||||
| 13 | BASE_SLOT0=0x00020000 | ||||
| 14 | BASE_SLOT1=0x00040000 | ||||
| 15 | fi | ||||
| 16 | |||||
| 17 | gdbexe=/mnt/linaro/toolchains/aarch32/bin/arm-linux-gnueabihf-gdb | ||||