Very small RAMdisk acting as an USB mass storage device

Dependencies:   RAM_DISK USBDevice mbed

Fork of USBMSB_Ramdisk_kl25z by Richard Green

main.cpp

Committer:
icserny
Date:
2016-05-26
Revision:
1:64231bdc8023
Parent:
0:fc0ff7c1656b

File content as of revision 1:64231bdc8023:

/* USBMSB_Ramdisk
 *
 * This is a fork of the USBMSB_Ramdisk_kl25z program of Richard Green
 * Link: https://developer.mbed.org/users/ragmondo/code/USBMSB_Ramdisk_kl25z/
 *
 * The program implements a very small (about 12kbyte) filesystem in RAM
 * and offers it by USBMSD protocol as an USB mass storag device.
 *
 * Hardware requirements:
 *  - FRDM-KL25Z board
 *  - The USB FRDM socket should be connected to a PC (or to other USB host)
 */ 

#include "mbed.h"
#include "USBMSD_Ram.h"

USBMSD_Ram sd;

int main() {
    while(1);
}