Search found 310 matches
- Sat May 02, 2020 3:18 pm
- Forum: General AmigaOS
- Topic: USB Stack Issue still unsolved...
- Replies: 39
- Views: 19165
Re: USB Stack Issue still unsolved...
by graff » Thu Apr 30, 2020 12:16 am @Belxjander Thanks, I'll take note of it and see if it can help point me in a general direction when looking at the attachment issues mentioned in this thread. The biggest problem for me in finding a cause and fix is probably that I generally don't experience an...
- Wed Apr 29, 2020 7:38 am
- Forum: General AmigaOS
- Topic: USB Stack Issue still unsolved...
- Replies: 39
- Views: 19165
Re: USB Stack Issue still unsolved...
@Belxjander Which modules have you changed the order of? The kernel modules are loaded to mem and Exec then initializes them in order of their internal hardcoded priority. But, ofcourse, swapping two modules of same priority may have Exec encounter them in a different order since having the same pr...
- Sun Apr 26, 2020 2:39 pm
- Forum: AmigaOS Feature Requests
- Topic: Tabbar on bottom?
- Replies: 7
- Views: 6266
Re: Tabbar on bottom?
The clicktab.gadget afaik has had Top/Bottom placement since the ReAction on OS3 implimentation, and I don't really see it lending itself to usage on Left/Right borders very well. Are you meaning for the clicktab.gadget to have dynamic placement after the window layout is made or by programmer choic...
- Mon Mar 23, 2020 4:10 am
- Forum: General AmigaOS
- Topic: USB Stack Issue still unsolved...
- Replies: 39
- Views: 19165
Re: USB Stack Issue still unsolved...
I've actually run into this problem myself... however I did find a solution...if this may work for you as well? The issue is kind of a heisenbug in that it will and will not show as it is technically NOT a bug in either the OS or the HW that I could determine, My personal workaround was to actually ...
- Thu Jun 28, 2018 1:40 pm
- Forum: General Developer Support
- Topic: exec.library->AddTask() stack handling...
- Replies: 9
- Views: 4123
Re: exec.library->AddTask() stack handling...
It will be nice to actually have a working XHCI USB3 controller added to my setup ... You're working on a USB3 driver? :shock: I managed to luck out and find a *PCI* card with XHCI Renasas PCI-Express Controller Bridged for use, and... of all the shocking things... IT WORKED and powered up when ins...
- Sat Jun 16, 2018 6:19 am
- Forum: AmigaOS Feature Requests
- Topic: Intuition "Xinerama" Features
- Replies: 11
- Views: 7269
Re: Intuition "Xinerama" Features
so if a Rule for "Extend=Workbench Right=CygnusEdScreen1 Bottom=DOpus.1" and neither CygnusEd nor DOPus were open, Workbench would not extend, however as soon as one or both become available the scrolling also becomes available with an active movement of the mouse stepping past the screen...
- Wed Jun 13, 2018 6:45 am
- Forum: Platform: Classic
- Topic: Deneb ZIII & Amiga OS 4.1 Final edition
- Replies: 4
- Views: 4982
Re: Deneb ZIII & Amiga OS 4.1 Final edition
Have you looked at any updates for the DenebZ3 for changes after OS4.1 to OS4.1FE ? as I know on my own sam440flex system I had a kernel update along with some USB device changes so maybe the drivers for the DenebZ3 also need to be updated for AOS4.1FE ? Just my own question... if you remove any aut...
- Wed Jun 13, 2018 12:41 am
- Forum: General Developer Support
- Topic: Device Driver "struct PCIDevice *pcidev;" pcidev's...
- Replies: 0
- Views: 1568
Device Driver "struct PCIDevice *pcidev;" pcidev's...
I'm currently trying to write a device driver for a PCI bridged PCI-Express USB3 XHCI controller and running into the following situation... during ramlib execution of the device "DevInit" and eventually passing through "InitUnit()" I can use the expansion.library "IPCI"...
- Sun Jun 10, 2018 6:27 pm
- Forum: General Developer Support
- Topic: exec.library->AddTask() stack handling...
- Replies: 9
- Views: 4123
Re: exec.library->AddTask() stack handling...
well... everything I was doing before reworking that section was entirely localized for variable usage.
so I am not actually sure where the globals came from at all
so I am not actually sure where the globals came from at all
- Sun Jun 10, 2018 2:34 am
- Forum: General Developer Support
- Topic: exec.library->AddTask() stack handling...
- Replies: 9
- Views: 4123
Re: exec.library->AddTask() stack handling...
Not a redeemable choice in following the example so closely... changed from using AddTask() over to using CreateTask() [CreateTaskTags() variant] instead... using AddTask() turns out to only be safe as long as code is hand-written assembly at that point. otherwise *every* syscall will trigger DSI an...