@ -24,49 +24,22 @@
# if ENABLED(USB_FLASH_DRIVE_SUPPORT)
# if ENABLED(USB_FLASH_DRIVE_SUPPORT)
# include "../../core/serial.h"
# include "lib/Usb.h"
# include "lib/Usb.h"
# include "lib/masstorage.h"
# include "lib/masstorage.h"
# include "Sd2Card_FlashDrive.h"
# include "Sd2Card_FlashDrive.h"
# include <SPI.h>
# include "../../core/serial.h"
USB usb ;
USB usb ;
BulkOnly bulk ( & usb ) ;
BulkOnly bulk ( & usb ) ;
Sd2Card : : state_t Sd2Card : : state ;
Sd2Card : : state_t Sd2Card : : state ;
uint32_t Sd2Card : : block ;
bool Sd2Card : : usbHostReady ( ) {
return state = = USB_HOST_INITIALIZED ;
}
bool Sd2Card : : isInserted ( ) {
return usb . getUsbTaskState ( ) = = USB_STATE_RUNNING ;
}
// Marlin calls this whenever an SD card is detected, so this method
// should not be used to initialize the USB host library
bool Sd2Card : : init ( uint8_t sckRateID , uint8_t chipSelectPin ) {
if ( ! usbHostReady ( ) ) return false ;
if ( ! bulk . LUNIsGood ( 0 ) ) {
// The USB library needs to be called periodically to detect USB thumbdrive
SERIAL_ECHOLNPGM ( " LUN zero is not good \n " ) ;
// insertion and removals. Call this idle() function periodically to allow
return false ;
// the USB libary to monitor for such events. This function also takes care
}
// of initializing the USB library for the first time.
SERIAL_ECHOLNPAIR ( " LUN Capacity: " , bulk . GetCapacity ( 0 ) ) ;
const uint32_t sectorSize = bulk . GetSectorSize ( 0 ) ;
if ( sectorSize ! = 512 ) {
SERIAL_ECHOLNPAIR ( " Expecting sector size of 512, got: " , sectorSize ) ;
return false ;
}
return true ;
}
void Sd2Card : : idle ( ) {
void Sd2Card : : idle ( ) {
static uint32_t next_retry ;
static uint32_t next_retry ;
@ -100,60 +73,84 @@ void Sd2Card::idle() {
if ( lastUsbTaskState = = USB_STATE_RUNNING & & newUsbTaskState ! = USB_STATE_RUNNING ) {
if ( lastUsbTaskState = = USB_STATE_RUNNING & & newUsbTaskState ! = USB_STATE_RUNNING ) {
// the user pulled the flash drive. Make sure the bulk storage driver releases the address
// the user pulled the flash drive. Make sure the bulk storage driver releases the address
SERIAL_ECHOLNPGM ( " Drive removed \n " ) ;
# ifdef USB_DEBUG
SERIAL_ECHOLNPGM ( " USB drive removed " ) ;
# endif
//bulk.Release();
//bulk.Release();
}
}
if ( lastUsbTaskState ! = USB_STATE_RUNNING & & newUsbTaskState = = USB_STATE_RUNNING )
if ( lastUsbTaskState ! = USB_STATE_RUNNING & & newUsbTaskState = = USB_STATE_RUNNING ) {
SERIAL_ECHOLNPGM ( " Drive inserted \n " ) ;
# ifdef USB_DEBUG
SERIAL_ECHOLNPGM ( " USB drive inserted " ) ;
# endif
}
break ;
break ;
}
}
}
}
uint32_t Sd2Card : : cardSize ( ) {
// Marlin calls this function to check whether an USB drive is inserted.
if ( ! usbHostReady ( ) ) return 0 ;
// This is equivalent to polling the SD_DETECT when using SD cards.
return bulk . GetCapacity ( 0 ) ;
bool Sd2Card : : isInserted ( ) {
}
return usb . getUsbTaskState ( ) = = USB_STATE_RUNNING ;
} ;
bool Sd2Card : : readData ( uint8_t * dst ) {
return readBlock ( block + + , dst ) ;
}
bool Sd2Card : : readStart ( uint32_t blockNumber ) {
// Marlin calls this to initialize an SD card once it is inserted.
block = blockNumber ;
bool Sd2Card : : init ( uint8_t sckRateID , uint8_t chipSelectPin ) {
return true ;
if ( ! ready ( ) ) return false ;
}
bool Sd2Card : : readStop ( ) {
if ( ! bulk . LUNIsGood ( 0 ) ) {
return usbHostReady ( ) ;
SERIAL_ECHOLNPGM ( " LUN zero is not good " ) ;
}
return false ;
}
bool Sd2Card : : readBlock ( uint32_t block , uint8_t * dst ) {
const uint32_t sectorSize = bulk . GetSectorSize ( 0 ) ;
if ( ! usbHostReady ( ) ) {
if ( sectorSize ! = 512 ) {
SERIAL_ECHOLNPGM ( " Read from uninitalized USB host " ) ;
SERIAL_ECHOLNPAIR ( " Expecting sector size of 512, got: " , sectorSize ) ;
return false ;
return false ;
}
}
return bulk . Read ( 0 , block , 512 , 1 , dst ) = = 0 ;
}
bool Sd2Card : : writeData ( const uint8_t * src ) {
# ifdef USB_DEBUG
return writeBlock ( block + + , src ) ;
lun0_capacity = bulk . GetCapacity ( 0 ) ;
SERIAL_ECHOLNPAIR ( " LUN Capacity (in blocks): " , lun0_capacity ) ;
# endif
return true ;
}
}
bool Sd2Card : : writeStart ( uint32_t blockNumber , uint32_t eraseCount ) {
// Returns the capacity of the card in blocks.
block = blockNumber ;
uint32_t Sd2Card : : cardSize ( ) {
return true ;
if ( ! ready ( ) ) return 0 ;
# ifndef USB_DEBUG
const uint32_t
# endif
lun0_capacity = bulk . GetCapacity ( 0 ) ;
return lun0_capacity ;
}
}
bool Sd2Card : : writeStop ( ) {
bool Sd2Card : : readBlock ( uint32_t block , uint8_t * dst ) {
return usbHostReady ( ) ;
if ( ! ready ( ) ) return false ;
# ifdef USB_DEBUG
if ( block > = lun0_capacity ) {
SERIAL_ECHOLNPAIR ( " Attempt to read past end of LUN: " , block ) ;
return false ;
}
# if USB_DEBUG > 1
SERIAL_ECHOLNPAIR ( " Read block " , block ) ;
# endif
# endif
return bulk . Read ( 0 , block , 512 , 1 , dst ) = = 0 ;
}
}
bool Sd2Card : : writeBlock ( uint32_t blockNumber , const uint8_t * src ) {
bool Sd2Card : : writeBlock ( uint32_t block , const uint8_t * src ) {
if ( ! usbHostReady ( ) ) {
if ( ! ready ( ) ) return false ;
SERIAL_ECHOLNPGM ( " Write to uninitalized USB host " ) ;
# ifdef USB_DEBUG
return false ;
if ( block > = lun0_capacity ) {
}
SERIAL_ECHOLNPAIR ( " Attempt to write past end of LUN: " , block ) ;
return bulk . Write ( 0 , blockNumber , 512 , 1 , src ) = = 0 ;
return false ;
}
# if USB_DEBUG > 1
SERIAL_ECHOLNPAIR ( " Write block " , block ) ;
# endif
# endif
return bulk . Write ( 0 , block , 512 , 1 , src ) = = 0 ;
}
}
# endif // USB_FLASH_DRIVE_SUPPORT
# endif // USB_FLASH_DRIVE_SUPPORT