forked from arpruss/USBComposite_stm32f1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
usb_mass_mal.c
42 lines (34 loc) · 1.34 KB
/
usb_mass_mal.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <stdlib.h>
#include "usb_mass_mal.h"
#define USB_MASS_MAL_FAIL 1
#define USB_MASS_MAL_SUCCESS 0
MassStorageDriveInfo usb_mass_drives[USB_MASS_MAX_DRIVES] = { { 0 } };
uint16_t usb_mass_mal_init(uint8_t lun) {
if (lun >= USB_MASS_MAX_DRIVES || (usb_mass_drives[lun].init != NULL && ! usb_mass_drives[lun].init()))
return USB_MASS_MAL_FAIL;
else
return USB_MASS_MAL_SUCCESS;
}
void usb_mass_mal_format(uint8_t lun) {
if (lun < USB_MASS_MAX_DRIVES && usb_mass_drives[lun].format != NULL)
usb_mass_drives[lun].format();
}
uint16_t usb_mass_mal_get_status(uint8_t lun) {
if (lun >= USB_MASS_MAX_DRIVES || (usb_mass_drives[lun].status != NULL && ! usb_mass_drives[lun].status()))
return USB_MASS_MAL_FAIL;
else
return USB_MASS_MAL_SUCCESS;
}
uint16_t usb_mass_mal_read_memory(uint8_t lun, uint8_t *readbuff, uint32_t startSector, uint16_t numSectors) {
if (lun >= USB_MASS_MAX_DRIVES || ! usb_mass_drives[lun].read(readbuff, startSector, numSectors))
return USB_MASS_MAL_FAIL;
else
return USB_MASS_MAL_SUCCESS;
}
uint16_t usb_mass_mal_write_memory(uint8_t lun, uint8_t *writebuff, uint32_t startSector, uint16_t numSectors) {
if (lun >= USB_MASS_MAX_DRIVES || usb_mass_drives[lun].write == NULL
|| ! usb_mass_drives[lun].write(writebuff, startSector, numSectors))
return USB_MASS_MAL_FAIL;
else
return USB_MASS_MAL_SUCCESS;
}