Default Event Loop

ESP-IDF has an Event Loop Library . This Library allows you to create an Event Loop and declare Events to which other components of your code can register handlers. Handler is a function which gets executed when a particular event occurs.

Read More

Boot Sequence of ESP32

When We start to learn a microcontroller or SoC, we want to write a lot of code quickly and make use of all the available features/peripherals. But I think acquiring proper knowledge of the boot sequence of an MCU is also very important.

Read More

Native ESP32 Toolchain Setup

In this Post we will set up the Native Compiler and toolchains in our Linux Host machine to program theESP32-DevKitC V4board . After the Setup we will run 2 example codes

Read More

Building an AOSP image

Here In this Post I will be sharing how I downloaded Android AOSP sources and built AOSP image for Nexus 7 [2012] device. You can follow this approach to build AOSP images for your devices for example Nexus 5 . So Let’s Start

Read More