Disclaimer: I am a pure s/w guy and know nothing of h/w, nor have I previously written code to interface with USB. please bear with me and if what I ask needs clarification, please ask. Thanks & I hope that someone can help.

I need to code a controller for an arcane and archaic serial bus protocol and I can't find an MCU that supports it.

The bus works thus: the master puts a command on the bus, every peripheral reads it and only acts on data addressed to him. Responses will be addressed to the master.

I have found some converter cabling which will interface each existing peripheral to a USB serial port.

The problem is that the bus is in effect point to multipoint, but these converters would leave me with a series of point to points.

Now, that may not be a great problem, because, as I said, normally the master puts a command on the bus, every peripheral reads it and only acts on what is addressed to him. Responses will be address to the master.

So the master s/w can either shotgun all USB ports or can write to a specific. The USB ports will probably be behind a hub because of their number, and that's where I a bit hazy.

Can I addresses a port behind a hub individually? If so then I could point to point commands from master to peripherals; if not, then master must write to all (how?) and they must ignore what is not addressed to them.

Presumably the reply is easy as it just appears to the master to be received from the USB hub?

I hope that that is clear. Any comments? As is obvious, I am not much of a hardware guy :-/

link|improve this question

2  
What platform? gregkh's "writing a USB driver" talk is available, but it focuses on writing device drivers to run in the Linux kernel rather than the libusb approach. Point-to-point USB must be possible because you can plug in any number of USB Mass Storage devices without issue... – sarnold Jan 6 at 3:18
Platform TBD. Might be Linux, but probably FreeRTOS. Thanks for the link – Mawg Jan 6 at 5:53
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.