Hello,
in my 100% assembly operating system, i need to use usb port to connect my camera. Do you know if this site http://www.usb.org/developers/docs/ allows me to write a driver with all features of USB 3.0 ?
Thanks in advance.
Managing usb 3.0 in my 100% assembly operating system
-
- Posts: 16
- Joined: Wed Aug 03, 2016 12:09 pm
- BrightLight
- Member
- Posts: 901
- Joined: Sat Dec 27, 2014 9:11 am
- Location: Maadi, Cairo, Egypt
- Contact:
Re: Managing usb 3.0 in my 100% assembly operating system
The fact that your OS is written in assembly is irrelevant.Factorisable wrote:Hello,
in my 100% assembly operating system, i need to use usb port to connect my camera. Do you know if this site http://www.usb.org/developers/docs/ allows me to write a driver with all features of USB 3.0 ?
Thanks in advance.
About those documents, I'd probably say yes. For USB 3, you'd probably also want the xHCI specification. Google will get you good results. You'll also need to write a driver for your camera after writing a driver for USB.
You know your OS is advanced when you stop using the Intel programming guide as a reference.
-
- Posts: 16
- Joined: Wed Aug 03, 2016 12:09 pm
Re: Managing usb 3.0 in my 100% assembly operating system
Thanks, it was all i wanted to know
Re: Managing usb 3.0 in my 100% assembly operating system
For what it's worth, I have a book at
http://www.fysnet.net/the_universal_serial_bus.htm
that details the USB, all four controller types, including USB 3.0 and the xHCI.
Ben
http://www.fysnet.net/the_universal_serial_bus.htm
that details the USB, all four controller types, including USB 3.0 and the xHCI.
Ben
Re: Managing usb 3.0 in my 100% assembly operating system
Apart from the official documents, the books that explain with code, and Wikis/forums, you could make use of the following MS-DOS/FreeDOS USB driver which has full source code. A camera would be an image acquisition device (a full example to enable and use a standard driverless camera like the Panasonic TY-CC20W, or for a scanner would be very valuable):Factorisable wrote:Hello,
in my 100% assembly operating system, i need to use usb port to connect my camera. Do you know if this site http://www.usb.org/developers/docs/ allows me to write a driver with all features of USB 3.0 ?
Thanks in advance.
USB Drivers for DOS (with Source Code to port)
YouTube:
http://youtube.com/@AltComp126
My x86 OS/software:
https://sourceforge.net/projects/api-simple-completa/
Donate to get more food/programming resources/computers:
https://www.paypal.com/donate/?hosted_b ... QS2YTW3V64
http://youtube.com/@AltComp126
My x86 OS/software:
https://sourceforge.net/projects/api-simple-completa/
Donate to get more food/programming resources/computers:
https://www.paypal.com/donate/?hosted_b ... QS2YTW3V64
-
- Posts: 16
- Joined: Wed Aug 03, 2016 12:09 pm
Re: Managing usb 3.0 in my 100% assembly operating system
Thank you a lot all.