JBBoardに接続したモーター2つをRCBControllerでコントロールするテストです。
Dependencies: FatFileSystem TB6612FNG2 mbed
Fork of JBB_BTLE_Test by
uvc/usb_itd.h
- Committer:
- jksoft
- Date:
- 2014-05-12
- Revision:
- 7:3ed1e36587d4
- Parent:
- 0:1ed23ab1345f
File content as of revision 7:3ed1e36587d4:
#ifndef USB_ITD_H #define USB_ITD_H #include "UsbInc.h" #include "usb_mem.h" class usb_itd { public: usb_itd(HCITD* itd); bool Done(); int ConditionCode(); int FrameCount(); int PacketStatus(int n); int Length(int n); uint8_t* BufferPage(int n, int size); uint16_t StartingFrame(); void free(); void debug(); private: uint16_t get_psw(int n); HCITD* m_itd; }; #endif //USB_ITD_H