breadWare v0.2

My reason for doing this whole writeup and putting this out there is to hopefully find some fellow hackers who are equally stoked on breadWare and want to help make it into something where people will wonder how the hell they built anything before it existed (probably not Arduino levels of disruption, but when I need to use a Bus Pirate, I can't even imagine the horrible dystopian hellscape the world would be without it.) At least for me, placing jumpers messes up my flow, because there's always that angel on one shoulder telling me to be methodical: cut my jumpers to the right length, make nice 90° bends, use colors consistently, while the demon on the other shoulder says to just get the damn thing working now and let future me deal with the mess. The demon always wins, so I'd really like the angel to shut up, it's distracting. So offloading that internal debate to a computer seems like a good idea [disclaimer: do not run this on a HAL 9000 computer, I hear cognitive dissonance like this can cause undefined behavior]

bW!_RB67_5_crop

Here’s the second board revision. I was showing off the last version to someone and they offhandedly mentioned that it would be cool if the whole thing fit under the breadboard. I knew this was my plan all along, but it forced me to finally design it before the code gets too specific to the original off-the-cuff design and I get stuck with my poor life design choices.

Matrix Board Changes

2021-06-10-0002-3

MTmatrix

I found that the most valuable resource when finding paths between rows that aren’t directly connected (so they need to make an intermediate hop) are “virtual” breadboard rows that aren’t connected to the actual board but connect to the control board below and basically act as the general purpose nodes to do everything else (like reading voltages, connecting to the GPIO on the microcontroller, connecting to a second board, etc.). I put 4 of them in (on chips A, D, E, H), and I don’t think that’s nearly enough if I want to be able to do a bunch of special function things at once without making the user use some particular set of rows to do certain things. I would really like to make it as simple as “put anything wherever and the board will figure it out.”

I changed the logical arrangement of the MT8816 crosspoint switches to make the it easier to just hop over the middle space. In the original layout if I wanted to connect top row 5 to bottom row 5, it would always take 2 hops to do that (and these switches each have an on resistance of about 65Ω). Now the bottom rows are flipped so internally the bottom left is 62 and counts down to 33 on the right (note: these are abstracted away to the user by using b1-b30 instead of bigger numbers.)

And just to add some glam I added some reverse mounted LEDs that shine through the top and bottom power rails to show when that rail’s power supply is on.

Control Board Changes

2021-06-10-0001-3

breadControl

I almost entirely redesigned the controller board so it has a ton of whatever the hardware equivalent of syntactic sugar is. The original was kind of thrown together to make sure the concept of using crosspoint switches like that wasn’t fundamentally stupid (still not entirely ruling that out, but so far it looks promising.) I also just realized I never did a writeup for the first iteration, and I’m not about to go back and do that just to prove that this board is an improvement.

Power Stuff

Because I’m going to such great lengths to make everything analog, and I already need a negative supply for the crosspoint switches; I decided to make the adjustable power supply for the rails also be able to do negative voltages. The power stuff still needs some work, right now it gets pretty warm when it’s running and it really doesn’t like it when I remove the matrix board with it on. Presumably because it needs some current draw but I’m not exactly sure why it cares as much as it does (I burned a tantalum cap shaped brand into my finger, you could almost read the markings in it.)

Also, the range of voltages available to each of the 4 rails is fixed. Next revision might include some way to multiplex the power rails (allowing any of them to be negative, right now only the bottom negative rail can do that and it can be changed with a solder jumper) but having looked into it for a while, there doesn’t seem to be a way to do it simply enough to outweigh the small utility gained from it. If anyone knows a better way to do this, let me know.

I’m using an LT1054 switched capacitor bipolar voltage converter that takes in +5V and doubles it to +10V and also flips that to -10V. That powers the MT8816s directly and the op amps I’m using for the adjustable voltage supplies. The previous board used inductors for that, and aside from the electrical noise, you could hear them running. I know the frequency they run at is way higher than 20kHz but they must have been resonating with something (or I’m actually part bat) because it was super annoying.

The way I decided to make an adjustable supply that can be controlled by the mcu might be really dumb, but so far it seems to work. I didn’t find any well documented examples of people doing it this way, so I’d love to hear from anyone who has or has a good reason why it will cause problems.

I used an MCP4728 DAC that’s controlled by I2C and feeds it’s 4 outputs into 2 L272D power op amps that can apparently supply 1A each. I used the inverting arrangement with a gain of 1.6 to make the negative supply able to supply 0V - -8V from the 0V - +5V output from the DAC. I put a bunch of low voltage drop schottkys (or is it schottkies? weird) so whatever is happening on the power rails they’re supplying shouldn’t affect them too much.

What’s cool about this setup is that the DAC is fast enough to use this whole circuit as a DDS function generator. That’s why I put solder jumpers to disconnect all the bypass caps. I haven’t written the code to try this out yet though.

Special Functions

On the control board there’s another 8x16 crosspoint switch that I’m using to multiplex the 8 passthrough connections (1 per chip on the top matrix board, but only 4 of them aren’t connected to a breadboard pin) to the special functions on the bottom control board.

The special functions are (a checkmark means the firmware is written enough to use it):

 2 ADC channels that can be read by the microcontroller

 MCP4661

 ATmega4809

 2 adjustable power supply channels (0 - 5V, 0 - -8V)

 1 ground

The 2 ADC channels go through two 4:1 voltage dividers to bring a possible ±10V input down to ±2.5V and the bottom of those dividers are connected to the V_REF pin on the microcontroller so analog signals can be biased to 0-5V to be read by the 10-bit ADC.

There’s an MCP4661 dual 8 bit digital potentiometer that has all 3 pins on 2 independent pots connected to the special function switch. I need to come up with a better interface for setting it in the terminal menu. When I eventually get around to making a GUI for this it will definitely make these more useful. These also come in 4 different ranges (5K, 10K, 50K, 100K) with the same pinout, I currently have the 50K model in there so that means each step is 195 ohms.

The GPIO pins are super interesting, for some reason the ATmega4809 datasheet never mentions the clear superiority of the first 4 pins in port C.
Port C and E
PC0-3 can do I2C, U(S)ART, 16-bit Timer/Counter, PWM, SPI, and CCL-LUT!
The CCL-LUT means Configurable Custom Logic - LookUp Table, so that means it an simulate an arbitrary logic gate. The analog stuff is covered by pin PE3.

Now the tricky part is coming up with a nice way to use those functions through the serial connection. I could probably somehow port the Bus Pirate firmware into some sort of shell, so you could use their awesome Community Firmware (and the red PCB really sells the aesthetic.)

Also, if anyone from Dangerous Prototypes is reading this; I’m dying for updates on (or just an official crushing of my dreams of one day owning) the Bus Pirate Ultra

Communicating With Other Things

On each corner of the board I put a 2x2 header so you can connect these side-by-side and make these into longer board. They communicate via UART with Tx Rx in at the top left and Tx Rx out at the top right. The bottom corners have the 4 unconnected pins from the top matrix on both sides. So you could use these to make connections from one board to the other. As it is currently, having only 4 of these general purpose matrix connections is a huge bottleneck for doing just about anything so I probably need to come up with a way to have more of these free pins in the next revision.

To communicate with the computer, I’m using an MCP2221A to talk to the mcu via a dedicated UART. That chip is also connected to the I2C lines but I’m not sure what I’m going to use that for, maybe I’ll have the I2C traffic passed along in some sort of debug mode. It also can send a reset signal from one of it’s 4 GPIO lines to the ATmega4809 (with a solder jumper in case that causes problems), which notably is a missing feature of this chip.
I could pretend that my choice to to use this was some principled stand against FTDI to cover for the fact that I actually don’t remember why I chose this over and FTDI232.

bW!_RB67_6

Making It Do Stuff

The interface currently sort of follows the general format that a Bus Pirate (and I’m sure a bunch of other things) use; mostly single character commands that present a sub menu. It’s amazing how quickly you run out of letters that make sense for a particular command, especially when you have some command you want to be available globally.

Making connections on the board just requires you to type in the two rows you want to connect, separated by a comma. Rows on the bottom are preceded by a ‘b’ so if you want to connect the 12th row on the top to the 24th row on the bottom you just type

12,b24

In the near future I intend to make a full blown GUI for this, because that’s the part that will make this thing actually make your life easier.

bW!_RB67_3_crop

Here are some screenshots the interface:

Connecting NodesScreen Shot 2021-06-11 at 4 58 42 PM

Disconnecting Nodes
Screen Shot 2021-06-11 at 4 57 02 PM

Turning on the power supplies
Screen Shot 2021-06-11 at 5 00 05 PM

Using the potentiometer
Screen Shot 2021-06-11 at 5 03 24 PM

Showing the frontend connections you’ve made
Screen Shot 2021-06-11 at 5 04 14 PM

Showing the backend (chip to chip) connections
Screen Shot 2021-06-11 at 5 04 45 PM

A couple extra glamour shots
bW!_RB67_9_crop

bW!_RB67_10_crop
btw all of the photos above this were shot on film

Most of them with a Mamiya RB67 on Lomochrome Metropolis
The two showing the boards separately near the beginning were taken with an Intrepid 4x5 on cross-processed Provia 100f

You can download ridiculously huge scans of these (or my non-documentation related photos) from my Flickr


v0 2_4_Crop
v0 2_5_Crop

v0 2_Back

mmmmmm melty traces
v0 2_PCB_3
v0 2_PCB_8

Size comparison between v0.1 and v0.2

v0 2_v0 1_Compare_1
v0 2_v0 1_Compare_2

breadWare v0.1

Note: this was originally written for some interns from NTU that were involved with some of the early parts of this project, just in case you were wondering who the hell I’m talking to.

Hey guys, here’s the PCB layout for the switch matrix board. Those holes should line up with the columns on a breadboard so this whole thing can be soldered directly onto the bottom. I just ordered 10 of these boards (in red soldermask! I’ve never been patient enough to wait the extra 24-48 hours to do a color other than green) so we can put a few together (I can teach whoever’s interested how to hot air solder these surface mount parts) and then get on making those header pins on the sides move the correct number of electrons to make this thing work.
MTMatrixBack

That white rectangle is roughly the size of a breadboard. We might be able to get the size down if we use TQFP instead of these huge PLCC sockets. Also could someone who reads chinese look through this datasheet for the CH446Q and tell me if there are any significant differences from MT8816 that we’re using? Because the JLCPCB (who is making these boards for us) has the CH446Q in stock and they’ll make the board and then solder them on so we can just order fully assembled boards ridiculously cheap (and the chips themselves are ~$1, so like a quarter of the price.)
MTMatrixFront

Notice how some of the pads in the middle (Plated Through Holes or PTH is the correct term just so you know) are more square and others are rounded. The squarer ones means that that pin is connected to the headers on the sides, so it can be used for measurement or power or whatever we decide when we make the control board. Those pins are: 0,1,8,16,24,31,32,40,48,56,63 which is the Y0 pin on each chip plus the ones that end up on the edges of the breadboard (31,63) and 1 because I had an extra header pin available.
Pin 0 is connected to the Negative rail on the top of the breadboard, 31 is the top Positive rail, 32 is the bottom Negaitve rail, and 63 is the bottom Positive rail. Everything else is where you’d expect it to be.
3DMTBack

Yes, these pin headers are on the wrong side but I’m not gonna let some stupid auto-generated 3D model tell me which side to solder them on. I might spend some time finding the 3D models for the PLCC sockets and a breadboard so this looks closer to the real thing.
Also, notice the silkscreened lines on the top and bottom are just a bit off from the holes, turns out the power rails on a breadboard arent spaced perfectly on the same grid as the rest of the pins. The line is marked where it would be if the universe made any sense.
3dMTFront

Those letters along the middle correspond to the row labels on a breadboard.
3dMTAngled

Here’s a zoomed out view of the whole schematic, those blue lines are busses, so they’re actually 4 wires bundled together to make it look less messy. This is following JJ’s brilliant idea for how to connect everything except I looped the ends back around so they conceptually should be thought of as a ring, If someone wants to map that out on one of those Ring Lattice Graphs, it might make all this easier to visualize.
MTSchematic

On the left we have the address lines, control lines and power input. Except for the last three with numbers, these are connected to all 8 chips together, so to make just the one we want to control do stuff, we use the Chip Select lines on the right side (labeled CS_A-H) which are wired to each chip individually. If the CS is logic 0 (~0 Volts, LOW, whatever), that chip will ignore everything that’s put on the address and control lines because that signal isn’t meant for it and these chips ain’t no eavesdroppin’ bitches. (just for everyone’s learning, Chip Select lines seem to almost always be Active Low, meaning they’ll ignore everything when that pin is held at logic 1 (5V or 3.3V depending on the chip) which is denoted with a line above, C̅S̅ (or /CS because overlining text is a pain in the ass on a computer. and it’s typically spoken as “bar”, so “CS Bar” in this case) this chip is unusual because it’s Active High.)
MTControlPinHeaders

Here’s a zoomed part so you can see how I named these interconnects, it goes Pin Name (X0, X1, etc.) then the letters of the two chips it’s connecting (in alpabetical order). So the pin labeled X0CD connects pin X0 on chip C to pin X0 on chip D. I had to do this like 5 times to get the wires to always connect to the same pin on both chips, but it should make the software much easier to deal with.
MTSchematicZoomed

Here’s the table I used to figure out which chips are connected where, and this helped me put them all in alphabetical order (because I can’t tell you if F is before or after H without singing the alphabet song in my head every time) so the labels are the same on both sides of the wire. Each chip is connected the to the two before and after it.
SwitchInterconnectTable

One day we will have this piece of paper framed and signed by JJ.
JJConceptInterconnects

Here are some pictures of both boards after assembly:

That green board hanging off is 2 charge pumps in parallel (for added current handling, but it was probably unnecessary) and an LM337 Negative Voltage Regulator. I built that because the power rails weren’t working until I realized I swapped Vss and Vee.
v0 1_Assembled_4
v0 1_Assembled_3

v0 1_Assembled_1
v0 1_Assembled_2