Author Topic: 8-bit uC - is there even a point?  (Read 57989 times)

0 Members and 2 Guests are viewing this topic.

Offline newbie666Topic starter

  • Regular Contributor
  • *
  • Posts: 73
8-bit uC - is there even a point?
« on: September 26, 2018, 12:23:02 pm »
Hello,

I've spent couple of days looking at the low end of uC market as I'm trying to select a chip to learn and use in my hobby projects for simple things like driving displays, reading some pots etc. General housekeeping stuff.

I really like 8-bit controllers from silicon labs, but looking at their arm offering I can't help but wonder if there's even a point in using 8-bit chips anymore. Cortex M0+ chips are cheap as chips these days.

So my question is - what are 8-bit uC still used for (in new designs). As a hobbyst, is there still a point in using them or should I invest my time in learning ARM platform?

Regards,
M
 

Offline taydin

  • Frequent Contributor
  • **
  • Posts: 520
  • Country: tr
Re: 8-bit uC - is there even a point?
« Reply #1 on: September 26, 2018, 12:30:02 pm »
8 bit MCU's are very simple. Their manufacturing process is much more coarse than the multi billion transistor chips used in modern designs. For a design that requires ultra high reliability, but not much processing power, these are very positive aspects.

Here is one example: Bit flipping as a result of cosmic rays is possible in modern high density RAM's, but it is very unlikely in the SRAM's that are used in yesterday's 8 bit MCU's.

But to answer your question, definitely learn the ARM architecture, which will be with us for a long time. You can always go back and learn the 8 bit MCU when you need it.
« Last Edit: September 26, 2018, 12:33:47 pm by taydin »
Real programmers use machine code!

My hobby projects http://mekatronik.org/forum
 

Offline Psi

  • Super Contributor
  • ***
  • Posts: 9925
  • Country: nz
Re: 8-bit uC - is there even a point?
« Reply #2 on: September 26, 2018, 12:34:22 pm »
For simple projects i will often fall back to using an 8bit AVR, but whenever i need power its STM32F4 all the way :)
STM32F0xx or STM32f103 is also good if you need lost cost.

Something you do notice though,
It's easier to do coding on bare metal registers with a 8bit AVR than with an ARM micro.

The registers on 8bit micros are usually designed and structured to be easy to follow.

The registers on a 32bit ARM mcu are designed to be used by a peripheral or HAL library. They're also a lot more complex because the peripherals are more complex..
Hence trying to write register level code on an ARM can be a bit annoying.

Using a 32bit ARM micro means you'll very likely be using a peripheral library, and they're usually shit to work with.
Just when you start to learn the library they release a new version and it breaks everything.
 
« Last Edit: September 26, 2018, 12:43:24 pm by Psi »
Greek letter 'Psi' (not Pounds per Square Inch)
 

Online JPortici

  • Super Contributor
  • ***
  • Posts: 3461
  • Country: it
Re: 8-bit uC - is there even a point?
« Reply #3 on: September 26, 2018, 12:52:12 pm »
Yes, there is still a point in 8-bit MCU or microchip (just to name one) wouldn't sell millions of them every year.
You don't want to use them? fine, don't. Use what you prefer to use.

Me, i'm contemplating scaling back to an 8-bitter for a project because when comparing the two pre-prototypes
- Some of the peripherals involved are better/more advanced
- Pins are better laid out, which translates into a cleaner layout
- because of above there is an increased complexity in the more advanced MCU so despite it having a better architecture the latency is the same, if not worse
However, the more advanced MCU gives me better tools for debugging and tracing
 

Offline sokoloff

  • Super Contributor
  • ***
  • Posts: 1799
  • Country: us
Re: 8-bit uC - is there even a point?
« Reply #4 on: September 26, 2018, 12:58:41 pm »
Low power devices (battery power, untethered) are probably the biggest technical reason a hobbyist would be interested in 8-bit micros. (All those additional transistors aren't "free" in terms of power consumption.)

For commercial applications, a chip in quantity being $0.30 instead of $0.90 translates to about a $3 difference in the cost of the finished good on a retailer's shelf, so that's a huge driver. Then, if you're a hobbyist with industrial/commercial aspirations, you might be interested in following that trend as well.

For me, I also enjoy the idea of constraints driving engineering/creativity.

“An engineer can do for a dollar what any fool can do for two.”
― Arthur Mellen Wellington
 

Offline NivagSwerdna

  • Super Contributor
  • ***
  • Posts: 2495
  • Country: gb
Re: 8-bit uC - is there even a point?
« Reply #5 on: September 26, 2018, 12:59:15 pm »
I'm trying to select a chip to learn and use in my hobby projects for simple things like driving displays, reading some pots etc.
For generic projects the cheapo hardware is Arduino Uno clones (ATmega328), esp8266, esp32, STM blue pill etc.  These devices cost nothing (compared to your time).
At some point you will have a specific project requirement that will make your choices more interesting.
 

Offline NorthGuy

  • Super Contributor
  • ***
  • Posts: 3138
  • Country: ca
Re: 8-bit uC - is there even a point?
« Reply #6 on: September 26, 2018, 01:00:29 pm »
There is practically no benefits of having 32-bit processor (as compared to 8-bit) for most simple projects. It's the periphery you should look at.

That said, investing your time in learning is always a good idea.
 

Offline CJay

  • Super Contributor
  • ***
  • Posts: 4136
  • Country: gb
Re: 8-bit uC - is there even a point?
« Reply #7 on: September 26, 2018, 01:25:01 pm »
The benefit of the simple 8 bitters is the utter simplicity of them, I can get a simple PIC up and doing 'stuff' in minutes with a page of assembler and no templates, I can't even find the relevant chapter in the ARM documentation in that time.

That said, the ARM chips are so incredibly powerful for the money it's difficult not to wonder if one should throw out all the old chips and use those instead.

 

Offline Warhawk

  • Frequent Contributor
  • **
  • Posts: 821
  • Country: 00
    • Personal resume
Re: 8-bit uC - is there even a point?
« Reply #8 on: September 26, 2018, 01:49:11 pm »
As you may already expect, they are typically easier to program and design with. Just have a look how many bypass capacitors you need around e.g. STM32F051 and a similar 8-bit micro.
I do both but I seldom need higher computing power or memory. My programs spend most of the time in delay routines (= waiting for an event) anyway  :-DD

I suggest spending some time with 8-bits uCs and then looking into ARMs, e.g. STM32F0x. You will immediately see the difference when you start endlessly configuring the chip, PLL, stack, clock domains..  :horse:
« Last Edit: September 26, 2018, 01:51:17 pm by Warhawk »
 

Offline nctnico

  • Super Contributor
  • ***
  • Posts: 26878
  • Country: nl
    • NCT Developments
Re: 8-bit uC - is there even a point?
« Reply #9 on: September 26, 2018, 02:04:46 pm »
I'd suggest going for a simple ARM (IMHO the LPC series from NXP is reasonably simple to get going; on par from what I've seen on typical 8 bit microcontrollers). On a fast 32 bit platform you are not running into speed limits and complications due to overlapping memory / seperate memory areas, etc. Looking back I really wish the modern 32bit ARM controllers existed 30 years go. They would have made a lot of my projects a whole lot easier. Also don't look at the price of the chips too much. Spare time is also valuable.
« Last Edit: September 26, 2018, 02:07:29 pm by nctnico »
There are small lies, big lies and then there is what is on the screen of your oscilloscope.
 
The following users thanked this post: petert

Offline legacy

  • Super Contributor
  • ***
  • !
  • Posts: 4415
  • Country: ch
Re: 8-bit uC - is there even a point?
« Reply #10 on: September 26, 2018, 02:58:00 pm »
if you want a cheap chip with a decent design, go for Avr8. You are full of support. If you then want to see something more advanced, go to Xmega.
« Last Edit: September 26, 2018, 03:24:52 pm by legacy »
 

Offline newbie666Topic starter

  • Regular Contributor
  • *
  • Posts: 73
Re: 8-bit uC - is there even a point?
« Reply #11 on: September 26, 2018, 03:08:40 pm »
Thanks for all the replies - it's an interesting discussion. I think I'll order two boards one containing geco, the other bee chip from Silicon Labs and spend some time to evaluate them.

Keep the discussion going, I'm interested in all of your opinions.
 

Offline Jan Audio

  • Frequent Contributor
  • **
  • Posts: 820
  • Country: nl
Re: 8-bit uC - is there even a point?
« Reply #12 on: September 26, 2018, 03:16:26 pm »
I like that PIC16 has seperate port with max 8 pins,
 

Offline HB9EVI

  • Frequent Contributor
  • **
  • Posts: 722
  • Country: ch
Re: 8-bit uC - is there even a point?
« Reply #13 on: September 26, 2018, 04:11:54 pm »
When I stepped forward from AVR towards ARM (STM32), I noticed to spend much more time scrolling through the datasheet finding a certain information than I was used on the AVR; well was likely caused in my refusal of using fancy libraries like the real pita HAL.

So today, if I need power, what means in my case big TFTs, Ethernet, I2S or else, I use ARM, for lower end projects I prefer AVR
 

Online SiliconWizard

  • Super Contributor
  • ***
  • Posts: 14440
  • Country: fr
Re: 8-bit uC - is there even a point?
« Reply #14 on: September 26, 2018, 05:14:35 pm »
As you may already expect, they are typically easier to program and design with. Just have a look how many bypass capacitors you need around e.g. STM32F051 and a similar 8-bit micro.

On a hardware level, that's often true, although it usually depends on the pin count. STM32s are rather easy to integrate otherwise.

On a software level, that's a different story. Although the simplicity of 8-bitters may be less intimidating at first, their inherent limitations, especially regarding the memory models, can be a real PITA. Their limited ALUs as well. Some don't even have hardware multipliers or very limited ones (size-wise), which can make some computations extremely slow.

Typically, for a programmer that comes from the PC software world and wants to do embedded development, using a 32-bit MCU will probably be much simpler, at least from a programming standpoint.

The price tag really matters only if you make very cheap devices in large quantities.

As for power consumption - there are so many ultra low power 32-bitters these days that this is becoming a moot point unless you target ultra ultra low power (that you will find in only a handful of 8-bitters anyway) for very simple tasks. For more involved tasks, you may find that they spend a lot more time in run mode than a 32-bitter would, thus drawing actually more on average. So obviously, it all depends on the application, but the sweet spot may be hard to find before actually testing.

Other things to consider are the development tools, their quality, availability and cost.
 

Offline nctnico

  • Super Contributor
  • ***
  • Posts: 26878
  • Country: nl
    • NCT Developments
Re: 8-bit uC - is there even a point?
« Reply #15 on: September 26, 2018, 05:16:15 pm »
When I stepped forward from AVR towards ARM (STM32), I noticed to spend much more time scrolling through the datasheet finding a certain information than I was used on the AVR; well was likely caused in my refusal of using fancy libraries like the real pita HAL.
IMHO that is an STM32 specific problem. ARM microcontrollers aren't made equal and some have better documentation / easier to understand peripherals than others.
There are small lies, big lies and then there is what is on the screen of your oscilloscope.
 

Offline HB9EVI

  • Frequent Contributor
  • **
  • Posts: 722
  • Country: ch
Re: 8-bit uC - is there even a point?
« Reply #16 on: September 26, 2018, 06:08:17 pm »
Yea, I heard the critique on STM32 from several sides; personally I'm missing the comparision to other ARM uC so far; but I guess I'd agree with it.
Certainly one is going the 'easier' way using the HAL, however I decided to not use right after the first glimpse on it; but I always worked bare metal
 

Online Kleinstein

  • Super Contributor
  • ***
  • Posts: 14165
  • Country: de
Re: 8-bit uC - is there even a point?
« Reply #17 on: September 26, 2018, 06:49:58 pm »
if you want a cheap chip with a decent design, go for Avr8. You are full of support. If you then want to see something more advanced, go to Xmega.

The XMEGA is essentially dead since AVRs come from microchip. There are now some new ones with a more confusing naming that is similar to the xmegas:  still AVR8 CPU with little changes, but ARM like periphery.

The AVRs are a relatively easy to learn type with short erratas. So a nice and easy start.

One more problem with most 32 bit micros is that they usually use some kind of cache memory that makes the run-time less predictable. The 8 Bit µCs usually have absolutely predictable run time, at least in ASM.

Price wise at the low end (low memory) and in large quantities the 8 bit µCs are still lower in cost, but this is not that relevant for a hobby use. With lots of memory the costs for the 8 bit µCs can be even higher than the 32 bit versions - so the 8 bit one are more something for the low end.
 

Offline PCB.Wiz

  • Super Contributor
  • ***
  • Posts: 1533
  • Country: au
Re: 8-bit uC - is there even a point?
« Reply #18 on: September 26, 2018, 09:19:49 pm »

I really like 8-bit controllers from silicon labs, but looking at their arm offering I can't help but wonder if there's even a point in using 8-bit chips anymore. Cortex M0+ chips are cheap as chips these days.

So my question is - what are 8-bit uC still used for (in new designs). As a hobbyst, is there still a point in using them or should I invest my time in learning ARM platform?

Of course 8 bits are alive and well. They are simpler, most have wider Vcc, and are still cheaper.
SiLabs have very good Analog peripherals, and their DAC parts are cheaper than buying a 12b DAC, so you find these days, parts like that are used as well as an ARM

The 8051 core is seeing a resurgence in Asia, and companies like Nuvoton have N76E003 parts starting at 25c, for 18kF, and STC have STC8H series coming.

That said, if you are not into volume production, many hobbyists even use Raspberry Pi modules, and are happy with that level of operation.

For casual use, choose the core that has the best debugger support.
 

Offline NorthGuy

  • Super Contributor
  • ***
  • Posts: 3138
  • Country: ca
Re: 8-bit uC - is there even a point?
« Reply #19 on: September 26, 2018, 10:54:02 pm »
... their inherent limitations, especially regarding the memory models, can be a real PITA.

They may. But under some circumstances, they may be turned into advantages. For example, some of PIC16 have the PCLATH register which must be set every time you do GOTO. This is certainly an example of PITA you're talking about. However, I had a project once, where I managed to put 3 different apps into a small PIC16 by giving each of them its own page. Each application had its own ISR, its own table of virtual functions. Switching between them was as easy as setting the PCLATH register. It is really fast and it preserves good ISR latencies. Replicating the design with "proper" 32-bit chip while preserving the same latencies would require really big and fast chip.
 
 

Offline Mr. Scram

  • Super Contributor
  • ***
  • Posts: 9810
  • Country: 00
  • Display aficionado
Re: 8-bit uC - is there even a point?
« Reply #20 on: September 26, 2018, 11:01:18 pm »
Many ARM chips require external tools to configure properly. They're quite complicated beasts. An 8 bit chip is less capable, but obtaining full control over it is doable. If you want simple and robust, the 8 bitters still have an edge.

From a hobbyist perspective I guess it's much more fun to drive around in a bare bones Beetle than it is to zip around is a modern Twingo. The latter gets the job done, but it's just not the same to drive or tinker with.
 
The following users thanked this post: petert

Online SiliconWizard

  • Super Contributor
  • ***
  • Posts: 14440
  • Country: fr
Re: 8-bit uC - is there even a point?
« Reply #21 on: September 26, 2018, 11:24:28 pm »
... their inherent limitations, especially regarding the memory models, can be a real PITA.

They may. But under some circumstances, they may be turned into advantages. For example, some of PIC16 have the PCLATH register which must be set every time you do GOTO. This is certainly an example of PITA you're talking about. However, I had a project once, where I managed to put 3 different apps into a small PIC16 by giving each of them its own page. Each application had its own ISR, its own table of virtual functions. Switching between them was as easy as setting the PCLATH register. It is really fast and it preserves good ISR latencies. Replicating the design with "proper" 32-bit chip while preserving the same latencies would require really big and fast chip.

That's certainly an interesting use of paging.

And all in all, granted that 8-bitters usually have (sometimes much) lower interrupt latencies than the 32-bitters for a given clock frequency.
 

Offline digsys

  • Supporter
  • ****
  • Posts: 2209
  • Country: au
    • DIGSYS
Re: 8-bit uC - is there even a point?
« Reply #22 on: September 26, 2018, 11:59:34 pm »
Quote from: newbie666
... I really like 8-bit controllers from silicon labs ... 
I've been using the Silabs series for years, and still am. They have an awesome amount of I/O A/Ds D/As IRQs etc etc There's bugger all I can't do without them.
It's vert rare that I need anything bigger, and I can often split a design up with 2+ modules and if needed, a simple 16/32 IO peripheral.
I've even replaced legacy / dedicated 3rd party ICs with a cheap single ~$2-3 8051. They won't die :-)
Hello <tap> <tap> .. is this thing on?
 

Offline richardman

  • Frequent Contributor
  • **
  • Posts: 427
  • Country: us
Re: 8-bit uC - is there even a point?
« Reply #23 on: September 26, 2018, 11:59:42 pm »
All our new designs use the new 32-bit ARM MCUs. From a price, performance, and even ease of use in terms of not less limited by the I/O peripheral capabilities, ARM MCUs win in every way.
// richard http://imagecraft.com/
JumpStart C++ for Cortex (compiler/IDE/debugger): the fastest easiest way to get productive on Cortex-M.
Smart.IO: phone App for embedded systems with no app or wireless coding
 

Offline Bassman59

  • Super Contributor
  • ***
  • Posts: 2501
  • Country: us
  • Yes, I do this for a living
Re: 8-bit uC - is there even a point?
« Reply #24 on: September 27, 2018, 12:06:13 am »
So my question is - what are 8-bit uC still used for (in new designs). As a hobbyst, is there still a point in using them or should I invest my time in learning ARM platform?

Say you have a main board and a front panel/user-interface board. Your main board has a big micro or an FPGA or whatever, and you could run a large ribbon cable between the two boards so the main micro could control everything on the front panel, or you could use a small 8-bitter as a co-processor, managing all of the user interface stuff and communicating with the main board over SPI. SPI at 20 MHz, say, gives you a ton of bandwidth for reading buttons and encoders and updating the blinkenlighten.

Some of these 8-bit guys are cheaper than those I2C-based LED drivers. It's crazy.
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf