Skip to content
Monday, October 27, 2025

Kalapi Infotech

Embedded Product – Infotech Developer

  • About Us
  • Topics
    • Interview
    • IOT
      • IOT Sensor’s & Applications
      • IOT – BLE Based Solutions
      • IOT Sensor’s Part 1:Humidity, Pressure, Temperature Sensors.
      • IOT Sensor’s Part 2: Accelerometers, Magnetometers, Time of light Sensors.
      • IOT Sensor’s: Temperature sensor’s
      • IOT Sensor’s: Accelerometer
      • Low Power MCU
    • STM32 Controller’s
      • STM32C031C6Tx microcontroller examples for GPIO, I2C, SPI, and UART using HAL.
      • Comprehensive Comparison of STM32 MCUs: Applications, Features, and Categories
      • STM32C0 Series Overview
    • Embedded
      • Embedded Systems
        • Embedded System Design Guide:
        • Embedded System Process Guide
        • As an embedded developer must read books
        • List of video courses as an embedded developer must do
        • Implementation of I2C communication using bit banging
      • STM32 FreeRTOS
        • STM32-Cube IDE-FreeRTOS Code Generation using CubeMx
        • STM32-Cube IDE-FreeRTOS Memory Management
        • STM32-Cube IDE-FreeRTOS Tasks
        • STM32-Cube IDE-FreeRTOS Intertask Communication Part – 1
        • STM32-Cube IDE-FreeRTOS Intertask Communication Part – 2
        • STM32-Cube IDE- FreeRTOS Memory Optimization – Analysis Technique.
      • STM32 Peripheral’s
        • Connectivity
          • UART
            • STM32-Peripheral’s-UART: Polling Mode
            • STM32-Peripheral’s-UART: Interrupt Mode
            • STM32-Peripheral’s-UART: DMA Mode
          • I2C
            • STM32-Peripheral’s- I2C polling mode
            • STM32-Peripheral’s- I2C DMA mode
          • SPI
            • STM32-Peripheral’s-SPI: Polling Mode
            • STM32-Peripheral’s-SPI: Interrupt Mode
            • STM32-Peripheral’s-SPI: DMA Mode
        • Analog
          • STM32-Peripheral’s-DAC:
          • STM32-Peripheral’s-ADC: Polling Method
          • STM32-Peripheral’s-ADC: Continuous Mode
          • STM32-Peripheral’s-ADC: Timer interrupt mode
          • STM32-Peripheral’s-ADC: Watchdog Mode
          • STM32-Peripheral’s-ADC: Scan Mode
          • STM32-Peripheral’s : Comparator
        • GPIO
          • STM32-Peripheral’s-GPIO: Output, Input
          • STM32-Peripheral’s-GPIO: EXTI
        • Timers
          • STM32-Peripheral’s Timers: Base Timer Interrupt Mode
          • STM32-Peripheral’s Timers: Output PWM
          • STM32-Peripheral’s Timers: Input PWM
          • STM32-Peripheral’s Timers: Input Capture Mode
          • STM32-Peripheral’s Timers: Output Compare Mode
  • Contact Us
You are Here
  • Home
  • RTOS

Tag: RTOS

Real time operating system

The Debouncing Pattern in Embedded Systems
Design Patterns Design Patterns Embedded System Software's

The Debouncing Pattern in Embedded Systems

October 9, 2025October 12, 20256 min read Chintan Gala

Introduction Mechanical switches, buttons, and some sensors don’t produce clean, instantaneous transitions between ON and OFF states. Instead, they generate a series of rapid, unpredictable

Read More

Coding, Design, Embedded, RTOSLeave a Comment on The Debouncing Pattern in Embedded Systems
Share
Facebook Twitter Pinterest Linkedin
Zephyr vs FreeRTOS: Choosing the Right RTOS for Your Project
AI/ML Embedded System IOT RTOS Software's

Zephyr vs FreeRTOS: Choosing the Right RTOS for Your Project

August 22, 2025August 22, 20254 min read Chintan Gala

When it comes to real-time operating systems (RTOS) in the embedded world, Zephyr and FreeRTOS stand out as two of the most prominent options. Both

Read More

Coding, Design, Embedded, RTOSLeave a Comment on Zephyr vs FreeRTOS: Choosing the Right RTOS for Your Project
Share
Facebook Twitter Pinterest Linkedin
FreeRTOS Interview questions
Embedded System Software's

FreeRTOS Interview questions

February 28, 2024September 18, 202514 min read Chintan Gala

A Comprehensive Guide to RTOS Interview Questions for Embedded Systems Welcome to this detailed guide on Real-Time Operating System (RTOS) interview questions, specifically crafted for

Read More

Coding, Embedded, Interview, RTOSLeave a Comment on FreeRTOS Interview questions
Share
Facebook Twitter Pinterest Linkedin
STM32-Cube IDE-FreeRTOS Intertask Communication Part – 1
Embedded System Software's

STM32-Cube IDE-FreeRTOS Intertask Communication Part – 1

June 6, 2021June 12, 202111 min read Chintan Gala

Queues Allows to pass more information between the tasks. Suspend task if tries to “put” to full queue or “get” from empty one. Semaphores are

Read More

RTOS, STM32Leave a Comment on STM32-Cube IDE-FreeRTOS Intertask Communication Part – 1
Share
Facebook Twitter Pinterest Linkedin
STM32-Cube IDE-FreeRTOS Intertask Communication Part – 2
Embedded System Software's

STM32-Cube IDE-FreeRTOS Intertask Communication Part – 2

June 2, 2021June 12, 20218 min read Chintan Gala

Queues Allows to pass more information between the tasks. Suspend task if tries to “put” to full queue or “get” from empty one. Semaphores are

Read More

Coding, RTOS, STM32Leave a Comment on STM32-Cube IDE-FreeRTOS Intertask Communication Part – 2
Share
Facebook Twitter Pinterest Linkedin
STM32-Cube IDE-FreeRTOS Tasks
Embedded System Software's

STM32-Cube IDE-FreeRTOS Tasks

February 20, 2021June 29, 20228 min read Chintan Gala

Task Tasks are implemented as C functions. The only thing special about them is their prototype, which must return void and take a void pointer

Read More

Coding, RTOS, STM32Leave a Comment on STM32-Cube IDE-FreeRTOS Tasks
Share
Facebook Twitter Pinterest Linkedin
STM32-Cube IDE-FreeRTOS Memory Management
Embedded System Software's

STM32-Cube IDE-FreeRTOS Memory Management

February 13, 2021July 30, 202210 min read Chintan Gala

FreeRTOS uses a region of memory called Heap (into the RAM) to allocate memory for tasks, queues, timers , semaphores, mutexes and when dynamically creating

Read More

Coding, RTOS, STM32Leave a Comment on STM32-Cube IDE-FreeRTOS Memory Management
Share
Facebook Twitter Pinterest Linkedin
STM32-Cube IDE-FreeRTOS Code Generation using CubeMx
Embedded System Software's STM32Code

STM32-Cube IDE-FreeRTOS Code Generation using CubeMx

February 6, 2021June 29, 20226 min read Chintan Gala

STM32CubeIDE is an advanced C/C++ development platform with peripheral configuration, code generation, code compilation, linking, and debug features. It is based on the Eclipse®/CDT framework

Read More

Coding, RTOS, STM32Leave a Comment on STM32-Cube IDE-FreeRTOS Code Generation using CubeMx
Share
Facebook Twitter Pinterest Linkedin

Recent Posts

  • The Debouncing Pattern in Embedded Systems
  • The Observer Pattern in Embedded Systems
  • The Mediator Pattern in Embedded Systems
  • The Hardware Proxy Pattern in Embedded Systems
  • Exploring STM32L0 Series: Ultra-Low-Power MCUs for Energy-Efficient Designs

Archives

  • October 2025
  • September 2025
  • August 2025
  • December 2024
  • November 2024
  • September 2024
  • February 2024
  • January 2024
  • October 2022
  • September 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • July 2021
  • June 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

About Us

Embedded Developer | RF | AEROSPACE | SATCOM | SMART METER | IOT

  • linkedin

You May Also Like

Design Patterns Design Patterns Embedded System Software's

The Debouncing Pattern in Embedded Systems

October 9, 2025October 12, 20256 min read
data codes through eyeglasses
Design Patterns Design Patterns Embedded System Software's

The Observer Pattern in Embedded Systems

October 1, 2025October 12, 20254 min read
Design Patterns Design Patterns Embedded System Software's

The Mediator Pattern in Embedded Systems

September 27, 2025October 12, 202510 min read
Free code MacBook laptop minimal
Design Patterns Embedded System Software's

The Hardware Proxy Pattern in Embedded Systems

September 18, 2025September 23, 202510 min read

K

  • Email
    kalapiinfotech@gmail.com
All Rights Reserved 2021.
Proudly powered by WordPress | Theme: Engage News by Candid Themes.