Last week, I closed with

I ordered a few OSD335X chips on Aliexpress. Tune back in next week to see if they show up or not.

Well, it’s next week, and my order got canceled. I ordered s’more from other places, and it was canceled. I Couldn’t even find anywhere that had a single SOM for me to buy. Best I could find was Minimum Order Quantity of 250 pieces. So I did what any reasonable person would do; Desoldered some from old, broken boards.

desoldered-som.

Then after sleeping on the idea of desoldering 10+ of these, I realized this probably isn’t the move for this project.

As a side note

FS: 1 (one) OSD3558-512M-BAS, slightly used $1000 OBO

So I had a look through Octopart, and decided that this project was dumb and gave up.

Redesigning the PCB

Then I made some coffee, sat down, and got to work redesigning the PCB for a Raspberry Pi Compute Module. These are really cool modules, but not really specced for this application. They are obviously targeted at media applications, not industrial control protocols or much/any interaction with the outside world. Buuuut they do have one good thing going for them - I can get a few of them. Below is a table showing some of the important differences in the main CPUs.

SOMCPU Clock SpeedCPU CoresRAMAvailable PWMUSB PortsNative CAN supportCSI (camera) portsDSI (display) portsHDMI ports
OSD335x900 MHz1512MBa lot2yes000
CM41.4 GHz41-8 GB2 (3 are required)1 (2 were desired )no (required)222

Soooo, while it technically is easier to obtain, the next issue is finding external components to do all the stuff I don’t need, notably CAN and RGB (the literal only requirements for this project).

Irritated, I hopped back onto OctoPart and started component hunting. First up was something about the PWM issue. I had two ideas for this, so to prevent further redesigns I decided to lay out both, just in case. The most straightforward solution is using some sort of IO Expander chip. I knew of one right off the top of my head: NXP PCA9685PW,112. It’s made specifically for controlling RGB LEDs via I²C. Features include: already having a driver in Linux and being pretty straight forward to design around. Bad news is it’s really popular so I can’t find it anywhere. So, the backup then: A Raspberry Pi Pico. I originally planned on using just the RP2040 chip, but you guessed it - out of stock. I connected it to the CM4 via I²C, and slapped it down on the board.

The other missing main component is something that speaks CAN. Again, I already had an idea for this as well. The MCP2515. It’s old, it’s not recommended for new designs, and I have a bunch of them in different packages on the shelf. Not much else to say about this chip other than because I have a bunch of them in 2 different packages, I plopped down a footprint for both of them on the board so I can just solder whichever without spinning a new board:

MCP Dual footprints

In the shot above, U8 and U5 are both a MCP2515, just in two different packages. (also photo’d is the pca9685 chip above.)

The other thing I tested this week was the “hack” of using a set of BSS138 N channel transistors to do the LED PWMing.

BSS138 prototype

As it turns out, they are not suitable for this application. When I threw these prototype boards on my bench supply connected to the prototype, I managed to melt the transistor at 12V @ 2A. I could just limit the brightness in software, but since I’m spinning the board anyway, I replaced them with a set of Mosfets.

Finally, after about a day of rerouting and updating everything, I was left with the new PCB. The best part, 93% procurable component selection.

octopart-bom

rerouted-pcb-final

Conclusions

I’m not super happy that I had to go through all this, but for what it’s worth, using the CM4 module was very easy, Even if it’s not the perfect selection. I really wanted to use the OSD335x chip since it’s a really cool chip, and has all the stuff I need built right into it. I’m sure I could have hunted around for another SOM. Several come to mind, the OSD32MP1, Most of the IMX line, etc. But upon quick searches, they are all just as hard to get as the OS335x. The other interesting part of all of this is that the BOM price actually went down by quite a bit. I wasn’t keeping super good track of this since most of the components I selected for the original design are out of stock and therefor artifically inflated in price. It’s kind of frustrating that it was easier to use something designed for set top boxes than it was to use something purpose built for my project but oh well.

Tune back in next week to see if I give entirely for real this time.