Skip to content

Commit

Permalink
fix msc setID
Browse files Browse the repository at this point in the history
  • Loading branch information
hathach committed Jun 5, 2019
1 parent 44c6f38 commit 90026b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Adafruit_USBD_MSC.h
Expand Up @@ -52,7 +52,7 @@ class Adafruit_USBD_MSC : Adafruit_USBD_Interface
//------------- Single LUN API -------------//
void setID(const char* vendor_id, const char* product_id, const char* product_rev)
{
setID(0, vendor_id, product_rev, product_rev);
setID(0, vendor_id, product_id, product_rev);
}

void setCapacity(uint32_t block_count, uint16_t block_size)
Expand Down

0 comments on commit 90026b2

Please sign in to comment.