This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Can arm hardware be built by serious hobbyist?

I am an absolute beginner , what I know is that to start embedded programming you should get a development board , create your project code using the development board. then in order to use that code in a real project you can either:

1-"manufacture" your own board using microcontroller chips and various electronic components from the market.

OR

2- use one of the boards that are "ready made".

correct? I mean is #1 is the way to go?

I think using a development board in real world projects is expensive. and even often development boards are large and heavy. given the complexity (I think) of arm processors is it feasible for "serious hobbyist" to create his own boards at home?

Parents
  • Cortex-M Microcontroller boards are within the realm of "build-it-yourself abilities.

    But the era of Large, expensive, heavy development boards seems to be pretty much over, killed by Arduino and it's brothers.

    ST, NXP, and TI have a large variety of eval boards for their respective Cortex-M offerings that are quite resonably priced, and include on-board debug hardware.

    Assorted Arduino an Arduino derivative boards cover a broad range of Microchip parts, go down toward the "very small" and "very cheap", and aren't really much more than a bare Microchip ARM chip plus the basic circuitry needed for it to run (say, like an Adafruit "Itsy Bitsy" based on SAMD21 or SAMD51.)  And the Microchip "Curiosity Nano" boards that include a debugger as well.

    Then there's the new $4 Raspberry Pi Pico board...

    I would say if your interest is "embedded programming", you should start with pre-built board - having things go wrong and not knowing whether it's your hardware design, your HW building skills, your build environment, or your software is just ... really annoying.  And this is WHY manufacturers provide "development boards" and environments.  "Here is a known working set of stuff.   Anything that goes wrong is YOUR fault.  Almost certainly.")

    THEN design your own board, because that's an important skill too.  The number of people who are willing to plunk a "development board" in the middle of something that they hope to make into an actual product is ... depressing.  (but may also "a good decision", based on pricing!  An RP2040 is $1, and a Pico Board is $4.  I don't think anyone can design the components of a Pico from bare parts for less than $4, in small volumes... (and then there's trying to solder 0.4mm QFN packages!))

Reply
  • Cortex-M Microcontroller boards are within the realm of "build-it-yourself abilities.

    But the era of Large, expensive, heavy development boards seems to be pretty much over, killed by Arduino and it's brothers.

    ST, NXP, and TI have a large variety of eval boards for their respective Cortex-M offerings that are quite resonably priced, and include on-board debug hardware.

    Assorted Arduino an Arduino derivative boards cover a broad range of Microchip parts, go down toward the "very small" and "very cheap", and aren't really much more than a bare Microchip ARM chip plus the basic circuitry needed for it to run (say, like an Adafruit "Itsy Bitsy" based on SAMD21 or SAMD51.)  And the Microchip "Curiosity Nano" boards that include a debugger as well.

    Then there's the new $4 Raspberry Pi Pico board...

    I would say if your interest is "embedded programming", you should start with pre-built board - having things go wrong and not knowing whether it's your hardware design, your HW building skills, your build environment, or your software is just ... really annoying.  And this is WHY manufacturers provide "development boards" and environments.  "Here is a known working set of stuff.   Anything that goes wrong is YOUR fault.  Almost certainly.")

    THEN design your own board, because that's an important skill too.  The number of people who are willing to plunk a "development board" in the middle of something that they hope to make into an actual product is ... depressing.  (but may also "a good decision", based on pricing!  An RP2040 is $1, and a Pico Board is $4.  I don't think anyone can design the components of a Pico from bare parts for less than $4, in small volumes... (and then there's trying to solder 0.4mm QFN packages!))

Children