ESP32 GPIO Tutorial Using ESP-IDF – LED Blinking and Push Button Example

This article is the continuation of the Series on the ESP32 Tutorials using ESP-IDF and carries the discussion on the ESP32 and its peripherals. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous post, we have seen how to setup the Visual Studio Code for ESP-IDF and … Read more

RTOS Basics Concepts – Part 1

rtos basics tutorial

Nowadays most companies are using RTOS. So almost all controllers support RTOS. If we want to work with RTOS, we should know the basic things like operating systems, processes, threads, semaphore, mutex, etc. So in this tutorial, we will cover the basic things that need to know for RTOS. We have divided this tutorial into … Read more

FreeRTOS Queue Tutorial Using LPC2148

FreeRTOS Queue Tutorial Using LPC2148

This article is a continuation of the  Series on FreeRTOS and carries the discussion on FreeRTOS and its usage. The aim of this series is to provide easy and practical examples that anyone can understand. In this tutorial, we are going to discuss about the FreeRTOS Queue Tutorial Using LPC2148. You can also read the … Read more

FreeRTOS – LPC2148 Counting Semaphore

This article is a continuation of the  Series on FreeRTOS and carries the discussion on FreeRTOS and its usage. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous tutorial, we have seen How to use the Binary semaphore with ISR and without ISR. Today we … Read more

FreeRTOS – LPC2148 Mutex Tutorial

FreeRTOS Mutex Tutorial using LPC2148

This article is a continuation of the  Series on FreeRTOS and carries the discussion on FreeRTOS and its usage. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous tutorial, we have seen the Counting Semaphore. Now we are going to see FreeRTOS Mutex Tutorial using … Read more

FreeRTOS – LPC2148 Binary Semaphore in ISR

FreeRTOS Binary Semaphore from ISR in LPC2148

This article is a continuation of the  Series on FreeRTOS and carries the discussion on FreeRTOS and its usage. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous tutorial, we have seen How to use a simple Binary Semaphore. Today we will learn the FreeRTOS … Read more

FreeRTOS – LPC2148 Binary Semaphore

FreeRTOS Binary Semaphore Tutorial in LPC2148

This article is a continuation of the  Series on FreeRTOS and carries the discussion on FreeRTOS and its usage. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous tutorials, we have seen How to create the task using FreeRTOS API. Today we will see the … Read more

FreeRTOS – Task Creation with Parameters

FreeRTOS LPC2148 Tutorial – Task Creation with Parameters

This article is a continuation of the  Series on FreeRTOS and carries the discussion on FreeRTOS and its usage. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous tutorial, we have created the two task with two prints. Today we are going to see FreeRTOS … Read more

FreeRTOS – Task Creation

FreeRTOS LPC2148 Tutorial - Task Creation

This article is a continuation of the  Series on FreeRTOS and carries the discussion on FreeRTOS and its usage. The aim of this series is to provide easy and practical examples that anyone can understand. Today we are going to see FreeRTOS LPC2148 Tutorial – Task Creation. Suggestion to read RTOS Basics – Part 1 … Read more

ESP32 IDF – Serial Communication Tutorial

ESP32 IDF Serial Communication Tutorial

Hi all… Now we will see ESP32 IDF Serial Communication Tutorial. ESP32 has three Serial ports. UART0, UART1, and UART2. ESP32 IDF Serial Communication Tutorial Suggest to Read ESP32 – IDF Programming Getting Started First, we will take the example Program from the example directory. Before coding, I will explain the API and Structures which … Read more