Mass storage: add library

This commit is contained in:
Daniel Fekete 2017-05-24 20:38:47 +02:00
parent d02b7ff902
commit e06c64fc96
6 changed files with 127 additions and 6 deletions

View File

@ -76,10 +76,6 @@ bool USBDeviceClass::beginCDC() {
return true;
}
namespace Testing {
extern USBD_StorageTypeDef USBD_DISK_fops;
}
bool USBDeviceClass::beginMSC() {
reenumerate();
@ -87,7 +83,7 @@ bool USBDeviceClass::beginMSC() {
USBD_RegisterClass(&hUsbDeviceFS, &USBD_MSC);
USBD_MSC_RegisterStorage(&hUsbDeviceFS, &Testing::USBD_DISK_fops);
USBD_MSC_RegisterStorage(&hUsbDeviceFS, &USBD_DISK_fops);
USBD_Start(&hUsbDeviceFS);

View File

@ -23,7 +23,11 @@
#ifndef _SERIAL_USBDEVICE_H_INCLUDED
#define _SERIAL_USBDEVICE_H_INCLUDED
#include "stdint.h"
#include "Arduino.h"
#include "msc/usbd_msc.h"
extern USBD_StorageTypeDef USBD_DISK_fops;
class USBDeviceClass {
public:

View File

@ -0,0 +1,15 @@
#######################################
# Syntax Coloring Map SPI
#######################################
#######################################
# Datatypes (KEYWORD1)
#######################################
#######################################
# Methods and Functions (KEYWORD2)
#######################################
#######################################
# Constants (LITERAL1)
#######################################

View File

@ -0,0 +1,9 @@
name=USB Mass Storage
version=1.0
author=Arduino
maintainer=Daniel Fekete <danieleff@gmail.com>
sentence=USB Mass Storage
paragraph=
category=Data Storage
url=
architectures=STM32

View File

@ -0,0 +1,91 @@
/*
Copyright (c) 2017 Daniel Fekete
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include "USBDevice.h"
#include "BlockDevice.h"
#include "msc/usbd_msc.h"
#include "MassStorage.h"
BlockDevice *usbBlockDevice;
const uint8_t MSC_Inquirydata[] = {
/* LUN 0 */
0x00,
0x80,
0x02,
0x02,
(STANDARD_INQUIRY_DATA_LEN - 5),
0x00,
0x00,
0x00,
'S', 'T', 'M', ' ', ' ', ' ', ' ', ' ', /* Manufacturer : 8 bytes */
'P', 'r', 'o', 'd', 'u', 'c', 't', ' ', /* Product : 16 Bytes */
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
'0', '.', '0' ,'1', /* Version : 4 Bytes */
};
USBD_StorageTypeDef USBD_DISK_fops = {
//Init
[](uint8_t lun) -> int8_t {
usbBlockDevice = getMassStorage();
return usbBlockDevice->begin() ? USBD_OK : USBD_FAIL;
},
//GetCapacity
[](uint8_t lun, uint32_t *block_num, uint16_t *block_size) -> int8_t {
*block_num = usbBlockDevice->getBlockCount();
*block_size = 512;
return USBD_OK;
},
//IsReady
[](uint8_t lun) -> int8_t {
return USBD_OK;
},
//IsWriteProtected
[](uint8_t lun) -> int8_t {
return USBD_OK;
},
//Read
[](uint8_t lun, uint8_t *buf, uint32_t blk_addr, uint16_t blk_len) -> int8_t {
return usbBlockDevice->readBlocks(blk_addr, buf, blk_len) ? USBD_OK : USBD_FAIL;
},
//Write
[](uint8_t lun, uint8_t *buf, uint32_t blk_addr, uint16_t blk_len) -> int8_t {
return usbBlockDevice->writeBlocks(blk_addr, buf, blk_len) ? USBD_OK : USBD_FAIL;
},
//GetMaxLun
[]() -> int8_t {
return 0;
},
(int8_t *)MSC_Inquirydata
};

View File

@ -0,0 +1,6 @@
#ifndef MASSSTORAGE_H
#define MASSSTORAGE_H
extern BlockDevice *getMassStorage();
#endif