-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from espressif/usb/msc/speed_optimization
USB MSC: speed optimization
- Loading branch information
Showing
16 changed files
with
508 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
## IDF Component Manager Manifest File | ||
version: "1.1.0" | ||
version: "1.1.0~1" | ||
description: USB DTE plugin for esp_modem component | ||
url: https://github.com/espressif/idf-extra-components/tree/master/usb/esp_modem_usb_dte | ||
|
||
dependencies: | ||
idf: ">=4.4" | ||
usb_host_cdc_acm: "2.*" | ||
esp_modem: "^0.1.28" | ||
esp_modem: ">=0.1.28,<2.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## 1.0.0 | ||
|
||
- Initial version | ||
|
||
## 1.0.1 | ||
|
||
- Fix compatibility with IDF v4.4 | ||
|
||
## 1.0.2 | ||
|
||
- Increase transfer timeout to 5 seconds to handle slower flash disks | ||
|
||
## 1.0.4 | ||
|
||
- Claim support for USB composite devices | ||
|
||
## 1.1.0 | ||
|
||
- Significantly increase performance with Virtual File System by allowing longer transfers | ||
- Optimize used heap memory by reusing the Virtual File System buffer | ||
- Optimize CPU usage by putting the background MSC task to 'Blocked' state indefinitely when there is nothing to do | ||
- Fix MSC commands for devices on interface numbers other than zero | ||
- Replace unsafe debug functions for direct access of MSC sectors with private SCSI commands |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
usb/usb_host_msc/include/msc_host_vfs.h → usb/usb_host_msc/include/usb/msc_host_vfs.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.