aboutsummaryrefslogtreecommitdiff
path: root/bootloaders
diff options
context:
space:
mode:
authorDavid A. Mellis <d.mellis@arduino.cc>2011-09-16 20:31:41 -0400
committerDavid A. Mellis <d.mellis@arduino.cc>2011-09-16 20:31:41 -0400
commitdd74a97fb61bd00b4dc185cdeb567eeb359f0032 (patch)
tree2e551aefbe6d6c5f8c402ba6f8b2611897fbd045 /bootloaders
parentb02d7b2add0baf53f9e45a4edefa3f4e533704f0 (diff)
Updating bootloader comments.
Diffstat (limited to 'bootloaders')
-rw-r--r--bootloaders/diskloader/src/DiskLoader.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/bootloaders/diskloader/src/DiskLoader.cpp b/bootloaders/diskloader/src/DiskLoader.cpp
index 1771d02..6580618 100644
--- a/bootloaders/diskloader/src/DiskLoader.cpp
+++ b/bootloaders/diskloader/src/DiskLoader.cpp
@@ -2,15 +2,9 @@
#include "Platform.h"
-// This bootloader creates a composite Serial/Mass storage device
+// This bootloader creates a composite Serial device
//
// The serial interface supports a STK500v1 protocol that is very similar to optiboot
-// The mass storage interface emulates a disk image that is used to read or write firmware.bin files
-// Delete firmware.bin and copy a new binary (not .hex) file to flash the firmware i.e:
-//
-// cp firmware.bin f:/. -f
-//
-// Ejecting the disk will run the firmware
//
// The bootloader will timeout and start the firmware after a few hundred milliseconds
// if a usb connection is not detected.