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: F401RE-USBHostMIDI_RecieveExample
Fork of F401RE-USBHost by
Diff: USBHost/USBEndpoint.h
- Revision:
- 3:a3872f7593e2
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/USBHost/USBEndpoint.h Sat Jan 25 12:51:44 2014 +0000
@@ -0,0 +1,15 @@
+#pragma once
+#include "USBHostTypes.h"
+
+class USBEndpoint {
+public:
+ void setState(uint8_t st){}; // dummy
+ void setSize(uint32_t size) { MaxPacketSize = size; }
+ void setAddress(uint8_t addr) { address = addr; }
+ uint8_t getAddress(){ return address; };
+ uint32_t getSize() { return MaxPacketSize; }
+
+private:
+ uint8_t address;
+ int MaxPacketSize;
+};
