Arduino announces its first ARM-based prototyping board, the Arduino Due
21–29 of 29 posts
Re: Arduino announces its first ARM-based prototyping board, the Arduino Due
#22Hmm, I'm not sure whether an ARM board is really a good idea. For most applications, a normal Arduino is easily sufficient. For anything more complicated, you can buy an ARM board running Linux (e.g the upcoming Raspberry Pi [1] for $25-$35). Arduinos are primarily used for education and prototyping. Programming raw ARM chips makes sense if you build a small series of specialized devices and want to keep costs down.…
There is a big difference between a Cortex-M3 and whatever is powering the Raspberry Pi. It's intended as an 8-bit microcontroller replacement. I've recently switched from TI MSP430 processors to this same Cortex-M3 from Atmel and performance has increased while per unit cost has gone down.
Re: Arduino announces its first ARM-based prototyping board, the Arduino Due
#23Hmm, I'm not sure whether an ARM board is really a good idea. For most applications, a normal Arduino is easily sufficient. For anything more complicated, you can buy an ARM board running Linux (e.g the upcoming Raspberry Pi [1] for $25-$35). Arduinos are primarily used for education and prototyping. Programming raw ARM chips makes sense if you build a small series of specialized devices and want to keep costs down.…
There is a big difference between a Cortex-M3 and whatever is powering the Raspberry Pi. It's intended as an 8-bit microcontroller replacement. I've recently switched from TI MSP430 processors to this same Cortex-M3 from Atmel and performance has increased while per unit cost has gone down.
Re: Arduino announces its first ARM-based prototyping board, the Arduino Due
#24Hmm, I'm not sure whether an ARM board is really a good idea. For most applications, a normal Arduino is easily sufficient. For anything more complicated, you can buy an ARM board running Linux (e.g the upcoming Raspberry Pi [1] for $25-$35). Arduinos are primarily used for education and prototyping. Programming raw ARM chips makes sense if you build a small series of specialized devices and want to keep costs down.…
There is a big difference between a Cortex-M3 and whatever is powering the Raspberry Pi. It's intended as an 8-bit microcontroller replacement. I've recently switched from TI MSP430 processors to this same Cortex-M3 from Atmel and performance has increased while per unit cost has gone down.
Re: Arduino announces its first ARM-based prototyping board, the Arduino Due
#25Earlier quoted context omitted.
There is a big difference between a Cortex-M3 and whatever is powering the Raspberry Pi. It's intended as an 8-bit microcontroller replacement. I've recently switched from TI MSP430 processors to this same Cortex-M3 from Atmel and performance has increased while per unit cost has gone down.
Thanks for the clarification. Is there really much demand for such a board?
Also, ARM Thumb2 is a much nicer instruction set than AVR in my humble opinion. Cortex-M3 also has some great instructions to improve the efficiency of real-time preemptive kernels (e.g. RBIT, CLZ and automatic pushing of registers on interrupt). I've written my own tiny kernel for this microcontroller, and I'll definitely be putting it up on github since this release increases the likelihood that others will contribute to it.
Also, Cortex Microcontroller Software Interface Standard (CMSIS) [1] makes porting between vendor's offerings (e.g. STM32 or Stellaris) much easier than going from say AVR to MSP430.
[1] http://www.arm.com/products/processors/cortex-m/cortex-micro...
Re: Arduino announces its first ARM-based prototyping board, the Arduino Due
#26The 12-bit A/D is a step up. Anyone know the projected unit cost for one of these? The processor alone is ~$10 (individually)
Re: Arduino announces its first ARM-based prototyping board, the Arduino Due
#27Hmm, I'm not sure whether an ARM board is really a good idea. For most applications, a normal Arduino is easily sufficient. For anything more complicated, you can buy an ARM board running Linux (e.g the upcoming Raspberry Pi [1] for $25-$35). Arduinos are primarily used for education and prototyping. Programming raw ARM chips makes sense if you build a small series of specialized devices and want to keep costs down.…
Re: Arduino announces its first ARM-based prototyping board, the Arduino Due
#28Earlier quoted context omitted.
The distance between the two rows of pin headers on each side is not a multiple of 0.1". This means that every shield that you attach to the Arduino needs to have this same strange spacing between the rows of pin headers. You cannot just use a normal perfboard. As all Arduino shields have the same weird spacing, fixing this design flaw would require everyone to buy new shields. There are Arduino clones that add corre…
Couldn't they make an adapter?
From raphman's link
Re: Arduino announces its first ARM-based prototyping board, the Arduino Due
#29If this is the first ARM-based Arduino, what was the Arduino chip based on that Google used at I/O for that accessory API thing? Was it a regular (but smaller) Arduino?