aoa.h 336 B

1234567891011121314151617181920
  1. #ifndef __AOA_H__
  2. #define __AOA_H__
  3. struct aoa_device_t {
  4. u16 version;
  5. u8 target_epin;
  6. u8 target_epout;
  7. u8 host_epin;
  8. u8 host_epout;
  9. struct adb_device_t *adb;
  10. };
  11. u32 aoa_process(u32 mode, u32 id);
  12. int usb_aoa_parser(struct usb_host_device *host_dev, u8 interface_num, const u8 *pBuf);
  13. #endif /*AOA_H*/