I am definitely stealing Dmcke5's thunder with this post, but wow, this is absolutely going to be one hell of a sexy beast!
Last edited:
I've seen those mipi displays around eBay, if I were doing my own pi 4b unit would you recommend getting my hands on one of those displays? Most I've seen were about 2k resolution but I have also looked at the HDMI to 40pin TTL 5" setups on adafruit they just weren't ipsStill deciding on the screen, I've found a 5.5" IPS 1080p option but it uses MIPI communication so we would need to find a suitable control circuit to include in the PCB to make that work. It may prove to be less complicated than copying the HDMI to TTL driver board, but at least I know that combination already works.
We didn't end up using one as we wanted to be able to integrate the display controller into our own PCB as we didn't have room for another separate LCD controller PCB and couldn't find any reliable open source designs for controlling MIPI displays. So we went with a 40 pin TTL display with the adafruit HDMI controller instead. There are plenty of 40 pin TTL displays around which are IPS, it may just take some trial and error to find one that's 100% compatible with the adafruit driver board.I've seen those mipi displays around eBay, if I were doing my own pi 4b unit would you recommend getting my hands on one of those displays? Most I've seen were about 2k resolution but I have also looked at the HDMI to 40pin TTL 5" setups on adafruit they just weren't ips
I'm not completely sure on the exact specs of the RVL PMS but assuming it can provide about 3 amps at 5v then yes it will be adequate for a pi4. There's no need for a 3.3v supply as the pi has its own built in 3.3v regulator for anything it needs. 10000mah would get you probably 5-6 hours of run time easily.Just getting an opinion, aside from a decent amount of weight with 20000mah and being lots of energy, would a modified rvl Pms for 5v/ 3.3v and 10000mah be sufficient for running a pi 4 portable?
Thanks, I can't say about the rails from the 5v buck but the BOM lists a 5v 4a buck boost for the PMS, the 3.3 was to have the uamp analog added in. I believe the pi 3.3 rail was not adequate enough for larger power drawI'm not completely sure on the exact specs of the RVL PMS but assuming it can provide about 3 amps at 5v then yes it will be adequate for a pi4. There's no need for a 3.3v supply as the pi has its own built in 3.3v regulator for anything it needs. 10000mah would get you probably 5-6 hours of run time easily.
I think the pi's 3.3v regulator can handle a couple of hundred milliamps. Have you considered one of the many digital audio options available for the pi? That's the direction I would go personally.Thanks, I can't say about the rails from the 5v buck but the BOM lists a 5v 4a buck boost for the PMS, the 3.3 was to have the uamp analog added in. I believe the pi 3.3 rail was not adequate enough for larger power draw
There aren't any DAC outputs on the Pi SoC or CM, so you won't be able to use the U-AMP with the Raspberry Pi. The Pi model A/B do it by using the PWM peripheral and a low pass filter. If you want to use the U-AMP you'd have to modify the code to set it up as a i2s master device and set the Pi as an i2s slave, with external MCLK for managing the timing of all the signals. Another possibility is to use the pins for DPI, but then use SPI or even possibly bit-banging, to attach a cheap external MCU with I2S which deals with a DAC or CODEC. The Pi doesn't have a decent MCLK at all, so nearly everyone I've spoken to goes with the PCM5102 chip for audio. We went with the WM8960 codec from Waveshare, since there is already a bunch of Linux drivers for it.Thanks, I can't say about the rails from the 5v buck but the BOM lists a 5v 4a buck boost for the PMS, the 3.3 was to have the uamp analog added in. I believe the pi 3.3 rail was not adequate enough for larger power draw
Yep, the internal 1v8 and 3v3 regulator outputs for the CM4 can supply up to 600mAI think the pi's 3.3v regulator can handle a couple of hundred milliamps.
I really wasn't plannning on using i2s from the pi to the uamp, I was going to pull headphone audio out to the analoge on the uamp, it's been done plenty of times for the pam8403. Just keeping it simple.There aren't any DAC outputs on the Pi SoC or CM, so you won't be able to use the U-AMP with the Raspberry Pi
That’s fine, but maybe I wasn’t clear in the above post. There is no DAC outputs on the Raspberry Pi, so you can’t use it to drive an analog amplifier.I really wasn't plannning on using i2s from the pi to the uamp, I was going to pull headphone audio out to the analoge on the uamp, it's been done plenty of times for the pam8403. Just keeping it simple.
Actually there is on the full sized Pi4, its just the Compute module that doesn't have one.That’s fine, but maybe I wasn’t clear in the above post. There is no DAC outputs on the Raspberry Pi, so you can’t use it to drive an analog amplifier.
Oh, my mistake then - I think the Pi Zero also doesn’t have any analog outputs. I guess then a generic analog amp will work fine then for other models. You’d still need a way to drive both headphones and speakers too though. U-AMP seems like a good solution for what he wants to do then.Actually there is on the full sized Pi4, its just the Compute module that doesn't have one.