Wildcard Week


AVR to ARM!

Advanced Embedded Programming

I chose Advanced Embedded Programming because it felt like the closes thing that I could use in my final project. I went to the CBA sections twice. The first time around, Erik gave us a tutorial on ARM processors. I did not see how I could use ARM microcontroller in my own final project since I was already using the ESP32. However, I did learn about OpenOCD and stuff. I did not make a board for this week, since I was too occupied with my final project and other classes. However, I learnt how to load the bootloader on the ARM microcontroller and then run Arduino code on the microcontroller. I was able to print to Serial Monitor. Below is the code I ran on the ARM microcontroller.

        
            void setup() {
                Serial.begin(9600);
              }
              
              void loop() {
                Serial.println("Hello World!");
                delay(100);
              }