diff options
author | Florian Heilmann <Florian.Heilmann@gmx.net> | 2018-08-23 01:17:43 +0200 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2018-08-22 19:17:43 -0400 |
commit | a8a912fbb5ddef0b36f38656fb5d0268b75f595c (patch) | |
tree | fb66f7a81dc6341cf2a1a3b451373aca3597ee97 /docs/Bootloaders.md | |
parent | e94f3b78271cdff6889628a76951eef9f3c8cecf (diff) | |
download | kutter-a8a912fbb5ddef0b36f38656fb5d0268b75f595c.tar.gz kutter-a8a912fbb5ddef0b36f38656fb5d0268b75f595c.tar.xz kutter-a8a912fbb5ddef0b36f38656fb5d0268b75f595c.zip |
docs: Update sam4e8e docs and benchmarks (#562)
Signed-off-by: Florian Heilmann <Florian.Heilmann@gmx.net>
Diffstat (limited to 'docs/Bootloaders.md')
-rwxr-xr-x[-rw-r--r--] | docs/Bootloaders.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/Bootloaders.md b/docs/Bootloaders.md index c1528c32..87ce0b00 100644..100755 --- a/docs/Bootloaders.md +++ b/docs/Bootloaders.md @@ -144,6 +144,24 @@ stty -F /dev/ttyACM0 1200 bossac -i -p ttyACM0 -R -e -w -v -b out/klipper.bin ``` +SAM4 micro-controllers (Duet Wifi) +==================================== + +It is not common to use a bootloader with the SAM4 mcu. The chip +itself has a ROM that allows the flash to be programmed from 3.3V +serial port or from USB. + +To enable the ROM, the "erase" pin is held high during a reset, which +erases the flash contents, and causes the ROM to run. + +The code at https://github.com/shumatech/BOSSA can be used to program +the SAM4. It is necessary to use version `1.8.0` or higher. + +To flash an application use something like: +``` +bossac --port=/dev/ttyACM0 -b -U -e -w -v -R out/klipper.bin +``` + SAMD21 micro-controllers (Arduino Zero) ======================================= |