What's the industry's consensus on Espressif modules? As a layman they look like an insane deal. With western manufacturers $3.5 doesn't even get you a firm handshake whereas Espressif gives you a fully intergrated module with everything already on board. https://www.digikey.com/en/products/detail/espressif-systems...
Given that Espressif was one of the few companies not to fail during the supply chain crunch I wouldn't hesitate to use them. Unlike the Raspberry PI Foundation.
ESP32-P4: High-performance MCU with IO-connectivity and security features
51–60 of 95 posts
Re: ESP32-P4: High-performance MCU with IO-connectivity and security features
#52Earlier quoted context omitted.
Probably the amount of RAM available more than the CPU. Surely you can get a very stripped down version of Linux running, but I doubt a version of Linux that you can use to do something useful. Surely the day that even on these sort of low cost microcontrollers can run Linux is not far...
It has an external PSRAM interface. You can easily get 64MB PSRAM chips which is plenty for Linux.
Re: ESP32-P4: High-performance MCU with IO-connectivity and security features
#53Meanwhile, we still can't buy many STM32s. An H7 project of mine has been on hold for 1.5 years. It's time I learn to program for Espressif.
Re: ESP32-P4: High-performance MCU with IO-connectivity and security features
#54Earlier quoted context omitted.
Given that Espressif was one of the few companies not to fail during the supply chain crunch I wouldn't hesitate to use them. Unlike the Raspberry PI Foundation.
The pico (rp2040) never really had issues and it's more of a direct competitor to the esp32 than a standard pi.
Re: ESP32-P4: High-performance MCU with IO-connectivity and security features
#55I'm running a few ESP32s and given their widespread usage I was surprised to notice that Espressif stock is very much near the lows of its 5 yr range, having lost over 2/3rds of its value from the peak. Is it just a function of market volatility? Do they have competition?
Every tech company stock looks like that?
Re: ESP32-P4: High-performance MCU with IO-connectivity and security features
#56Earlier quoted context omitted.
It has an external PSRAM interface. You can easily get 64MB PSRAM chips which is plenty for Linux.
It's about virtual memory controllers. Linux needs one. The chips at this size don't always have the minimum hardware features to even boot Linux.
Edit: looks like there is already a port https://www.cnx-software.com/2020/02/17/how-to-build-run-lin...
Re: ESP32-P4: High-performance MCU with IO-connectivity and security features
#57Earlier quoted context omitted.
A little off topic: Is there a video compression chip that I can put on a board with an ESP32 to make a live streaming camera similar to what can be done with an RPi or Jetson Nano?
I don't understand the question - this chip has an H.264 encoder on board.
Re: ESP32-P4: High-performance MCU with IO-connectivity and security features
#58Earlier quoted context omitted.
How do you connect them? I would actually love to have a few PoE powered and connected ESP's since you have to power these things anyway.
Why use ESP32 if you're powering with PoE? Might as well use an "Ethernet-on-board" like Teensy 4.1, and then use a PoE splitter (ex: https://www.adafruit.com/product/3239 ) to power it. Why pay for WiFi power (which is rather expensive) when you literally are sending Ethernet communication wires to your uC ? https://www.pjrc.com/store/teensy41.html
Personally I'd take an ESP32 over a teensy 4.1 unless you specifically need the extra GPIOs or something. The teensy's are great hardware, but you're stuck with either Arduino or hand rolling.
You don't pay for WiFi power if the RF amp is off, and ESP-IDF for me is far better to work with than the Arduino software ecosystem especially once the complexity starts going up.
Also, if you just want to make widgets and not learn embedded development esp-home is brilliant.
Re: ESP32-P4: High-performance MCU with IO-connectivity and security features
#59Earlier quoted context omitted.
> use less power, I was about to go off on a rant about how power hungry the ESP32 is. But having a look its not as bad as I remembered (or perhaps I was thinking about the 8266) https://diyi0t.com/reduce-the-esp32-power-consumption/ depending on the board you can get it to as low as 15ma in "normal" use(light sleep microprocessor only, modems off). But when the wifi is on it chows down powers.
The chips various Arduino-like chips are 5mA active, 500uA when light sleeping, 5uA in deeper sleep, and hundreds-nanoamps in deepest sleep. 15mA "light sleep" is really heavy actually compared to most things IMO. Hell, the Nordic Semiconductor nRF5340 uses 5mA _WHEN TRANSMITTING ON ITS RADIO_. https://www.nordicsemi.com/Products/nRF5340 ----------- ESP32 is in that zone between the low-power (and ultra-low power) uC…
Re: ESP32-P4: High-performance MCU with IO-connectivity and security features
#60Huge huge fan of ESP32s over Arduino/RPi/etc for any/all projects where I can do so. I’ve probably got 15-20 ESP32 projects around the house, and have done somewhere around 80-100 for other people. Arduino does a great job with marketing but at the end of the day you could do 99% of Arduino projects with an ESP32 for 1/10th the cost, use less power, and get way more features at the same time, while still using the Ar…