diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-13 19:02:15 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-13 19:02:15 +0100 |
commit | fee89d520fb02b6fb673050c9d2043e14641edf6 (patch) | |
tree | 65fc7a33667e8147c983ed9925ff9fb30d63199c /stm/lib/usbd_req.h | |
parent | ed65605edc5c1376947a34723b9c750400b5a028 (diff) | |
download | micropython-fee89d520fb02b6fb673050c9d2043e14641edf6.tar.gz micropython-fee89d520fb02b6fb673050c9d2043e14641edf6.zip |
Implement crude but functional CDC + MSC USB device.
Diffstat (limited to 'stm/lib/usbd_req.h')
-rw-r--r-- | stm/lib/usbd_req.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/lib/usbd_req.h b/stm/lib/usbd_req.h index f88416df3a..4853186c0d 100644 --- a/stm/lib/usbd_req.h +++ b/stm/lib/usbd_req.h @@ -89,7 +89,7 @@ void USBD_ParseSetupRequest( USB_OTG_CORE_HANDLE *pdev, void USBD_CtlError( USB_OTG_CORE_HANDLE *pdev,
USB_SETUP_REQ *req);
-void USBD_GetString(uint8_t *desc, uint8_t *unicode, uint16_t *len);
+void USBD_GetString(const char *desc, uint8_t *unicode, uint16_t *len);
/**
* @}
*/
|