This is a good article but it's a few years old, and out of date now. I can't see its date with my current adblock settings. It would be great if someone could find it and put it in the title. There are stupendously powerful $1 microcontrollers now, including the RP2040 (dual core cortex m0+ with 264KB ram on the chip), ESP32-S2 (Espressif core with 400k of ram and wifi), and ESP32-C3 with wifi and RISC-V core and ag…
$1 Microcontrollers (2017)
71–80 of 103 posts
Re: $1 Microcontrollers (2017)
#72Re: $1 Microcontrollers (2017)
#73I just came across this site on Friday when looking for a possible replacement for some Digispark (ATTiny85 board) clones at work to connect to some 5v relay modules. I'm not too invested in the Arduino ecosystem at this point and am still looking into other options, haven't finished reading through the whole list yet.
I think the ecosystem is really quite impressive with a really low entry hurdle from a teaching perspective. It was possible to get the power consumption of the atmega328p low enough for battery operation even with just Arduino, giving an easy introduction into prescalers and flags. From there you can step deeper into the functionality of avrdude (shoutout to USBASP) and standard AVR makefile projects with for example the micronucleus bootloader.
Re: $1 Microcontrollers (2017)
#74Earlier quoted context omitted.
It's up to hobbyists what's worth it to them, but the power consumption of the ESP 8266/32 is not _really_ comparable to the '430. "Deep sleep" mode on the ESP seems to be about 20uA, an MSP430FR5969 can go to a 20nA LPM 4.5 mode (factor of 1000 lower). Harder to compare in a HN comment, but active mode power consumption is also in the MSP's favor for many applications particularly when using the built in hardware ac…
Good point... my perception on power usage was absolutely wrong. MSP's are aging a bit though. At least the ones in my drawer. Is the hw platform being actively developed or has it plateau'd?
Re: $1 Microcontrollers (2017)
#75Earlier quoted context omitted.
Good point... my perception on power usage was absolutely wrong. MSP's are aging a bit though. At least the ones in my drawer. Is the hw platform being actively developed or has it plateau'd?
I think the platform is very much still alive and kicking. It is still the only uP platform I am aware of which is available with embedded FRAM which is low power, non volatile, extremely more write durable than flash and rad hard. Again, maybe not top selling features for a hobbyist project but absolutely compelling for certain industrial use cases.
Re: $1 Microcontrollers (2017)
#76Earlier quoted context omitted.
The article about the Padauk is interesting. Especially the description of the FPPA feature. Multiple CPU contexts? This sounds suspiciously like SMT to me which would be a total novelty for a micro controller (afaik).
ESP32 was released August 2016. I’m not even sure it was the first.
Re: $1 Microcontrollers (2017)
#77This is a good article but it's a few years old, and out of date now. I can't see its date with my current adblock settings. It would be great if someone could find it and put it in the title. There are stupendously powerful $1 microcontrollers now, including the RP2040 (dual core cortex m0+ with 264KB ram on the chip), ESP32-S2 (Espressif core with 400k of ram and wifi), and ESP32-C3 with wifi and RISC-V core and ag…
>RP2040 Wow, that's an incredibly capable chip for the price!
Re: $1 Microcontrollers (2017)
#78Maybe this is a dumb question, but are any of these cheap microcontrollers able to run Win 98? Or am I misunderstanding what microcontrollers can do?
Generally a microcontroller has no MMU. A microprocessor may mean the same thing. The industry term for something with an MMU is an application processor (Cortex-A). There are other terms that can be used, but it will need to be specified. There is some fuzzy area between MMU-less, small processors, and processors with no MMU but large enough to run Linux in a MMU-less way.
Re: $1 Microcontrollers (2017)
#79I stopped tinkering with electronics despite being a full-time embedded software engineer. I have designed small boards, but I only know enough EE to get myself in trouble. I prefer working with EEs that know their stuff, where our skills can compliment each others’. I no longer work on “hobby” projects; such things become an albatross around my neck. If you deploy a hobby project in your life, you must maintain it.…
Re: $1 Microcontrollers (2017)
#80Earlier quoted context omitted.
ESP32 was released August 2016. I’m not even sure it was the first.
The ESP32 has two separate cores, not SMT. But look at the Parallax Propeller which goes back quite a long way. Also the Padauk is not exactly SMT afaict. It's more like time slicing. The idea of SMT in eg. an x86 is that one thread can run while another is blocked waiting for memory.