Search found 7 matches

by zoran4afc
Mon May 17, 2021 8:22 am
Forum: Other Applications
Topic: XMOS module_usbhost High Speed support
Replies: 6
Views: 47469

Re: XMOS module_usbhost High Speed support

Still no response from anybody
by zoran4afc
Wed Feb 03, 2021 11:45 am
Forum: Other Applications
Topic: Implementation of High Speed USB Host on xCore216 or newer
Replies: 2
Views: 5442

Implementation of High Speed USB Host on xCore216 or newer

libUsbHostLLD_x200.a library can be used to implement up to Full Speed USB Host in xCore 216. I am aware of existing High Speed USB Client library (XUD), but I need High Speed USB Host . Is there High Speed USB Host library for some XMOS chip already available? If not, is there a way for me to get t...
by zoran4afc
Wed Dec 12, 2018 3:54 pm
Forum: Other Applications
Topic: Migrating "USB Audio MFi Software" to Xcore200 Explorer Board
Replies: 0
Views: 51967

Migrating "USB Audio MFi Software" to Xcore200 Explorer Board

Following my post "XMOS module_usbhost High Speed support" (http://www.xcore.com/viewtopic.php?f=37&t=7008), I am trying to migrate "USB Audio MFi Software" to Xcore200 Explorer Board. As before, I need only the USB host functionality from the "USB Audio MFi Software&quo...
by zoran4afc
Wed Dec 05, 2018 1:44 pm
Forum: Other Applications
Topic: XMOS module_usbhost High Speed support
Replies: 6
Views: 47469

Re: XMOS module_usbhost High Speed support

Hello mon2, thank you for quick reply. The thing is, I need the host XMOS library with HS support, not the device library. "module_usbhost" with the library libUsbHostLLD_x200.a is the host library, but it supports, apparently, only FS. That module is a part of the "USB-Audio-Host-Sof...
by zoran4afc
Tue Dec 04, 2018 8:37 am
Forum: Other Applications
Topic: XMOS module_usbhost High Speed support
Replies: 6
Views: 47469

XMOS module_usbhost High Speed support

XMOS Support suggested that I should ask the following question for the XCore Engineers here, on the forum. In my current project I need to implement USB host with the UAC1 and UAC2 generic drivers on the xCore 216 (working on audio_xk_216_mc board). In the USB Audio MFI Software I found the module ...
by zoran4afc
Wed Jul 12, 2017 4:00 pm
Forum: Other Applications
Topic: Calculate/check USB crc16
Replies: 1
Views: 4241

Calculate/check USB crc16

Hello, I am trying to create assembler code to calculate USB crc16. My problem is that I don't understand how to properly call assembler crc8 instructions in chain. My try: ldc r7, 0x8408 // polynomial x16+x12+x5+x0 bit reversed ldc r3, 0xffff // initial value ldc r5, 0 crc8 r3, r4, r3, r7 // ??? zh...