template and source for hardware projects
Go to file
King Kévin bde94d7b85 lib: update repo 2022-05-28 12:36:25 +02:00
coraleda/subc lib: add 1x6 header 2022-05-20 13:31:58 +02:00
geda/symbols lib: add 1x6 header 2022-05-20 13:31:58 +02:00
library@c939ac91d6 lib: update repo 2022-05-28 12:36:25 +02:00
.gitignore add PnP export 2021-12-19 11:24:57 +01:00
.gitmodules update submodule source 2022-05-11 12:13:02 +02:00
.qeda.yaml lib: add 1x6 header 2022-05-20 13:31:58 +02:00
CHANGELOG.md changelog: document v0 errors 2022-05-20 13:29:28 +02:00
LICENSE.txt add CERN-OHL-S license 2021-07-22 12:22:58 +02:00
README.md README: add project description 2022-01-28 18:46:39 +01:00
Rakefile Makefile: fix lepton CLI call 2022-02-02 15:38:51 +01:00
dfp_clone.rb fix dfp generation 2022-05-20 14:04:33 +02:00
gafrc add schematic configuration and template 2021-07-22 12:28:19 +02:00
mass_prop.sh add PnP export 2021-12-19 11:24:57 +01:00
pnp_fab.tab add PnP export 2021-12-19 11:24:57 +01:00
usb_hub-dfp1.sch sch: connect more shield of USB-A 2022-05-20 18:52:50 +02:00
usb_hub-dfp2.sch sch: connect more shield of USB-A 2022-05-20 18:52:50 +02:00
usb_hub-dfp3.sch sch: connect more shield of USB-A 2022-05-20 18:52:50 +02:00
usb_hub-dfp4.sch sch: connect more shield of USB-A 2022-05-20 18:52:50 +02:00
usb_hub-dfp5.sch sch: connect more shield of USB-A 2022-05-20 18:52:50 +02:00
usb_hub-dfp6.sch sch: connect more shield of USB-A 2022-05-20 18:52:50 +02:00
usb_hub-dfp7.sch sch: connect more shield of USB-A 2022-05-20 18:52:50 +02:00
usb_hub.lht brd: minor cleanup 2022-05-21 13:39:24 +02:00
usb_hub.sch sch: fix netname, improve routing 2022-05-20 13:33:37 +02:00
version switch to next version 2022-05-10 16:21:50 +02:00

README.md

the CuVoodoo USB hub is a 7-port USB 2.0 hub meant for device testing.

purpose

most USB hub are super cheap and crappy, leading the poor connection connection and data transfer. there are industrial USB hubs, but they are bulky and very expensive. to solve this issue I decided to design my own USB hub, tailored to my needs.

when developing and testing hardware, you often end with a lot of USB devices connected. USB allows to have up to 128 devices, but only with a maximum depth of 7. thus you are only allowed to have a maximum of 5 USB hubs between computer and devices, and I often have to plan my setup to not reach this limit. most 7-port USB hubs use two 4-port USB hub, the seconds being connected to the first. there are some exception to that, but they are rare, old, and often not advertised as such. this heavily limits the number of end devices. this device is a 7-port flat USB hub, preventing reaching this limit too often.

the incoming and outgoing USB ports are individually ESD protected. this safety becomes important when developing, testing, and handling bare electronic devices. this also comes in handy against when connecting circuit with different ground potentials. ESD protections already saved my day twice. the issue is that they can blow without you noticing, but at least they protected the device once.

each output port is current limited to 500 mA. no device should draw more that this specified limit. it if does, there is very probably an issue with the device. this protection allows to isolate the faulty device and not have it affect all other connected devices, or the hub itself. the fault is also detected and reported by the hub to the host computer.

each output port is power controlled. this allows to remotely switch on an off individual devices. this is an important requirement when developing and testing devices, which require a power cycle.

additionally, a switch next to the power can force the power off state.

the USB hub can be self-powered (through the USB input port), externally powered by 5V, or externally powered by anything between 6 and 40V. this allows to use higher voltage power supplies to provide enough current to all power. the 5V are not feed back to the host.

each output port comes with a high voltage output power port, connected to the high voltage input port. this allows to power devices which require more than 5V (e.g. 12V externally powered devices). each of these power output is controllable. as with the 5V USB power output, this allows to remotely switch on an off individual devices.

each port has status LEDs, indicating the speed and power of the connected device.

the board uses proper impedance and differential signal routing to provide clean USB transfer.

design choice

USB 3.0

this hub is only for USB 2.0 devices. by far this are most of the devices I develop. is makes it simpler and keeps the cost reasonable. I often even disable USB 3.0 because of the 13-device limitation of the Intel xHCI. when I need USB 3.0 for the very few devices, I connected them to the computer directly.

USB2517

I wanted to use the FE2.1 7-port USB hub chip. it does not need an external voltage regulator or crystal. and it is easier to solder thanks to its TQFP package, and provides all required functionalities. sadly I could not find a source for the 64-pin packages, and the 48-pin variant does not provide all required functionalities. thus I had to fall back to the Microchip USB2517, which uses a harder to solder QFN package.

current limitation

the few USB hubs that have current limitation on the output, use a MIC2026. this does limit the current to 500 mA, but only in constant current mode. the fault is reported (e.g. to the hub, back to the computer), but it is up to the user to power off the faulty device. instead I use poly-fuses, which automatically cut the power once the limit of 500 mA is reached. this is faster, and removes user-based actions. the fault is still reported. this is very useful when testing devices.

LED color

the USB specification, LEDs are used as port indicator (section 11.5.3)

  • off: powered off/disconnected
  • amber: current limitation reached
  • green: enabled or transmitting

instead the following color scheme is used:

  • green off: power off or over-current
  • green on: power on
  • red: low speed device connected
  • blue: full speed device connected
  • purple (red+blue): high speed device connected
  • red and blue off: disconnected

usage

requirements

to be able to generate the outputs you need following software:

  • rake: the central script taking care of generating the output files (Makefile is too cumbersome to parse files)
  • QEDA: to generate footprints for the parts
  • Lepton EDA: for the schematic capture
  • pcb-rnd: for the board layout the output generation is automatized.

compiling

library

almost all of the symbols and footprints used in the schematic and board layout are defined in the QEDA format and generated for the CAD software. the library folder contains the QEDA parts definitions.

to install QEDA using NPM from the official repository:

sudo npm install -g qeda

to install QEDA from the sources:

git clone https://github.com/qeda/qeda
cd qeda
npm install
sudo npm install --global

to generate the parts:

rake library

this will use the parts definition (.yaml files) in the library to generate gEDA gschem/Lepton EDA symbols (.sym files) in the geda/symbols folder, and coralEDA pcb-rnd footprints (.lht files) in the coraleda/subc folder.

only the QEDA parts in subfolders within library come from the QEDA library, but the files are included in this project for simplicity and archiving purposes. all other parts are custom and written for this project.

schematic

the .sch file is the schematic source file. it has been drawn using Lepton EDA.

it uses standard symbols, and the ones in the geda/symbols/ folder. most symbols are generated by QEDA as described above.

to export as pdf:

rake print

BOM

to export the bill of material (as CSV):

rake bom

board

the .lht file is the board layout source file. it has been drawn using coralEDA pcb-rnd.

it uses the symbols from the coraleda/subc/ folder. most symbols are generated by QEDA as described above. oshw_logo.lht is just the Open Source Hardware Logo. it been generated from https://oshwlogo.cuvoodoo.info/.

to export gerber files for PCB manufacturer (and photo preview + overview document):

rake fabrication