BLOG

Time to debug with GDB

One thing is writing code, but testing, maintaining, and figuring out what is going on is a hell of a ride. For that reason exist

Read More »

Defining registers

We have been testing our previous codes using s simple program to blinky a single led, but something that you shall notice is that we

Read More »

Adding the Standard library

No decent program is complete without the C Standard library. Remove the flag -nostdlib from the makefile. Build, only to discover the linker is complaining

Read More »

The ISR Vector Table

Let’s talk about interrupts, as a good embedded engineer you should know very well what an interrupt is, so I’m not gonna explain it in

Read More »