Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: UsbHostMAX3421E_Hello
Diff: UHS2_gpio.h
- Revision:
- 1:2263e77400e9
- Parent:
- 0:84353c479782
--- a/UHS2_gpio.h Sun Jul 12 20:39:26 2020 +0000 +++ b/UHS2_gpio.h Mon Jul 13 07:03:06 2020 +0000 @@ -31,14 +31,14 @@ class UHS2_GPIO { public: - UHS2_GPIO(USB *pUsb); + UHS2_GPIO(Usb *pUsb); void digitalWrite(uint8_t pin, uint8_t val); int digitalRead(uint8_t pin); int digitalReadOutput(uint8_t pin); private: - USB* m_pUsb; + Usb* m_pUsb; }; #endif // __USB2_GPIO_H__