Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
You are viewing an older revision! See the latest version
Homepage
FLASH File System¶
This file system can mount, read, and enumerate a file system image which has been appended to the compiled .bin code file before being uploaded to the mbed device. I wrote a utility called fsbld to create images that can be used with this file system. This fsbld.zip archive contains the sources for that utility.
To get the file system image onto the mbed device, you need to concatenate your binary from the compiler with the file system image binary.
- On *nix this can be done with the cat command. For example:
cat Test_LPC1768.bin FileImage.bin >/Volumes/MBED/test.bin
- On Windows this can be done with the copy command. For example:
copy Test_LPC1768.bin + FileImage.bin e:\test.bin