RTOS Basics Concepts – Part 2

RTOS Advanced Tutorial

In the previous post, we have seen the RTOS basics (Part 1). So this is the RTOS Advanced Tutorial which is a continuation of that part. RTOS Advanced Tutorial Real-Time Operating Systems In Real-Time Operating Systems, each activity set as its own task which runs independently under the supervision of the kernel. For example in … Read more

Getting Started with ESP32 – Setup ESP-IDF using VS Code and Hello World Example

ESP32-IDF getting started

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 this post we will setup the ESP-IDF in VS Code (ESP32 – Getting started with ESP-IDF … Read more

Typedef in C

This article is a continuation of the Series on the C programming tutorial and carries the discussion on C language programming and its implementation. It aims to provide easy and practical examples for understanding the C program. In our last article, we have seen the difference between the macro and inline functions in C programming. In this article, we are … Read more

Enum (Enumeration) in C

This article is the continuation of the Series on the C programming tutorial and carries the discussion on C language programming and its implementation. It aims to provide easy and practical examples for understanding the C program. In our last article, we have seen the Typedef in C programming. In this tutorial, we are going to discuss Enumeration in C … Read more

Storage Class in C (auto, register, static, extern)

storage classes in C language

This article is a Series on the C programming tutorial and carries the discussion on C language programming and its implementation. In our last tutorial, we have seen Variables in C programming. In this tutorial, we will discuss the storage classes in C language. It aims to provide easy and practical examples for understanding the C program. You … Read more

8051 – Introduction

Now we will see the Introduction to the Embedded System and 8051. Introduction to the embedded system and 8051 Embedded System An embedded system is a computer system designed for specific control functions within a larger system, often with real-time computing constraints. Embedded systems control many devices in common use today. Embedded systems contain processing … Read more