1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/cpu/kinetis/dist
francisco c219fdc001 kinetis/check-fcfield: skip on IMAGE_OFFSET > 0x410
- fcfield is located in memory at 0x400-0x40f. Its content is only read
  upon reset, therefore if in presence of a bootloader and multiple
  applications, the fcfield will only be read when the bootloader
  is loaded. As long as we flash at IMAGE_OFFSET > 0x410 we do not
  care about the fcfield content since it won't get overwritten.
2019-05-28 10:19:00 +02:00
..
calc_spi_scalers kinetis: Unify all Kinetis CPUs in one directory 2017-11-10 10:42:59 +01:00
generate-cpu-files kinetis: Add script for generating vendor header include lines 2017-11-10 10:42:59 +01:00
check-fcfield.sh kinetis/check-fcfield: skip on IMAGE_OFFSET > 0x410 2019-05-28 10:19:00 +02:00
Makefile kinetis: Unify all Kinetis CPUs in one directory 2017-11-10 10:42:59 +01:00
README.md kinetis: Unify all Kinetis CPUs in one directory 2017-11-10 10:42:59 +01:00
wdog-disable.s kinetis: Unify all Kinetis CPUs in one directory 2017-11-10 10:42:59 +01:00

K60 tools

This directory contains tools for working with K60 CPUs.

Watchdog disable

wdog-disable.bin is a location-independent watchdog disable function with a breakpoint instruction at the end. Useful for disabling the watchdog directly from OpenOCD.

Usage:

openocd -c 'reset halt' \
  -c 'load_image wdog-disable.bin 0x20000000 bin' \
  -c 'resume 0x20000000' # watchdog is disabled and core halted