:: Re: [DNG] ADA
Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: dvalin
Fecha:  
A: dng
Asunto: Re: [DNG] ADA
On 20.08.24 13:46, Dan Purgert via Dng wrote:

> I just happened to be in the right place (college, or just thereafter)


> at the right time to get in on "Playing with arduino" (PIC was always


> "just out of reach" money-wise).


The great thing about AVR chips (arduino UNO is an ATmega328P) is that

they are well covered by the GNU toolchain. Having used that the last 12

years of my career, on 68000, PowerPC, V850 targets, I chose AVR over

PIC for our products on that score alone.

On the AVR ATmega16, we just used gas, no gcc, as a quick little

event-driven OS with inter-process queues, plus a suite of macros

implementing a sweet state machine language, was quite convenient for

creating multi-threaded call control firmware. And I always wrote ISRs

in assembler, so you'd know latency down to the instruction cycle.

Erik