Search found 310 matches
- Sun Aug 02, 2020 3:56 pm
- Forum: Platform: AmigaOne 500 and Sam series
- Topic: Crash on task "MainUSB0" (module CrossDOS FS)
- Replies: 4
- Views: 6183
Re: Crash on task "MainUSB0" (module CrossDOS FS)
Using multiple Toshiba 8GB and 16GB USB drives myself... I run into a variation of this error in that if I don't run the "DiskChange" command against the USB#: device which is the specific drive I will remove... I have sometimes run into data corruption on the disk with pieces of a file mi...
- Mon Jul 27, 2020 3:31 pm
- Forum: General AmigaOS
- Topic: AMIstore Application questions...
- Replies: 1
- Views: 1066
AMIstore Application questions...
Two issues... First up is when launching AMIstore without a "PUBSCREEN=" ToolType, I regardly use between 3-5 "screens" of visual real-estate, (Workbench, Browser, IRC at least, occasionally two more for SDK Documentation and Other media) When launching the AMIstore Application r...
- Wed Jul 08, 2020 6:21 am
- Forum: General Developer Support
- Topic: Testers wanted - USB3 XHCI USBHCD
- Replies: 13
- Views: 3667
Re: Testers wanted - USB3 XHCI USBHCD
I'm not restricting the testers group yet (I'm still sorting out hosting the code to make the driver available!) The only restrictions are ... AmigaOS 4.x with Sirion USB as that is what I'm writing for, and XHCI hardware of some kind. after that It's a matter of co-ordinating updates... I'm thinkin...
- Wed Jun 17, 2020 12:32 am
- Forum: General Developer Support
- Topic: Testers wanted - USB3 XHCI USBHCD
- Replies: 13
- Views: 3667
Re: Testers wanted - USB3 XHCI USBHCD
Added "Seventhwonder"s VIA Technologies USB3 controller ID's to CandidateList
working on "ReverseInPlace" Transfer Ring Buffer Operations for Commands and Events
working on "ReverseInPlace" Transfer Ring Buffer Operations for Commands and Events
- Mon Jun 15, 2020 7:34 am
- Forum: General Developer Support
- Topic: USB device with multiple interfaces
- Replies: 2
- Views: 655
Re: USB device with multiple interfaces
Is it letting you select single vs multi touch support by which end-point you claim?
- Mon Jun 15, 2020 7:30 am
- Forum: General Developer Support
- Topic: Testers wanted - USB3 XHCI USBHCD
- Replies: 13
- Views: 3667
Re: Testers wanted - USB3 XHCI USBHCD
Added Fresco Logic VendorID:DeviceID tuple to candidates
EDIT: AlfredOne's card values
Right now I'm working through the hardware controller setup logic.
1st attempt locked up, double-checking all the hard reads and writes.
EDIT: AlfredOne's card values
Right now I'm working through the hardware controller setup logic.
1st attempt locked up, double-checking all the hard reads and writes.
- Fri Jun 12, 2020 2:59 pm
- Forum: General Developer Support
- Topic: Testers wanted - USB3 XHCI USBHCD
- Replies: 13
- Views: 3667
Re: Testers wanted - USB3 XHCI USBHCD
Grab the card and test away... According to the website it is xHCI so yeah it should function with what I have written so far. Just don't expect full immediate functionality straight away. I'll need the VendorID and DeviceID codes (as shown in ShowConfig/Ranger) to add it into the Candidate List pro...
- Wed Jun 10, 2020 9:54 am
- Forum: General Developer Support
- Topic: Testers wanted - USB3 XHCI USBHCD
- Replies: 13
- Views: 3667
Testers wanted - USB3 XHCI USBHCD
Literally as the topic states... I have a *partial* USBHCD written for XHCI operations, and mainly need to find a group of volunteers who are willing to test using it with PCI or PCI-Express hardware on machines other than a sam440-flex. I'm currently building against a Vendor{0x1912=Renasas} Device...
- Fri Jun 05, 2020 9:05 am
- Forum: General Developer Support
- Topic: Possible IPCI error or is it my code?
- Replies: 1
- Views: 1005
RESOLVED+QUESTION of IPCI->FindDeviceTags() -- Was IPCI error or my code?
if(Base->IPCI) { Unit->ICard=NULL; Unit->ICard=(APTR)Base->IPCI->FindDeviceTags( // FDT_CandidateList, &Candidates, FDT_VendorID, 0x1912, FDT_DeviceID, 0x0014, FDT_Index, unitn, TAG_DONE, TAG_DONE); } if(Unit->ICard) { KDEBUG("XHCI::OpenUnit() ** Card Found!!! **\n"); Unit->ICard->Loc...
- Mon May 18, 2020 4:51 am
- Forum: General Developer Support
- Topic: Possible IPCI error or is it my code?
- Replies: 1
- Views: 1005
Possible IPCI error or is it my code?
Within the following code... /* ** */ uint8 OpenUnit(struct DEVICE_CLASS *Base, struct USBIOReqHCD *iovec, uint32 unitn, uint32 flags) { uint8 rc=0L; struct DEVICE_UNIT_CLASS *Unit=NULL; if(Base) { Unit=Base->DevUnit[unitn]; if(Unit==NULL) Unit=Base->IExec->AllocVecTags(DEVICE_UNIT_SIZE,AVT_Type,MEM...