Skip to content
Thursday, May 28, 2026

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
  • Resources
You are Here
  • Home
  • Coding
  • Page 4

Tag: Coding

STM32-Peripheral’s-ADC: Watchdog Mode
Embedded System Software's STM32 Peripheral's STM32Code STM32CubeIDE

STM32-Peripheral’s-ADC: Watchdog Mode

December 25, 2021June 7, 20223 min read Chintan Gala

Analog watchdog: The AWD analog watchdog status bit is set if the analog voltage converted by the ADC isbelow a lower threshold or above a

Read More

ADC, Coding, Embedded, Peripheral's, STM32Leave a Comment on STM32-Peripheral’s-ADC: Watchdog Mode
Share
Facebook Twitter Pinterest Linkedin
STM32-Peripheral’s-ADC: Timer interrupt mode
Embedded System Software's STM32 Peripheral's STM32CubeIDE

STM32-Peripheral’s-ADC: Timer interrupt mode

December 18, 2021June 7, 20225 min read Chintan Gala

An analog to digital converter is a circuit that converts a continuous voltage value (analog) to a binary value (digital) that can be understood by

Read More

ADC, Coding, Embedded, Peripheral's, STM32Leave a Comment on STM32-Peripheral’s-ADC: Timer interrupt mode
Share
Facebook Twitter Pinterest Linkedin
STM32-Peripheral’s-ADC: Continuous Mode
Embedded System Software's STM32 Peripheral's

STM32-Peripheral’s-ADC: Continuous Mode

December 11, 2021July 23, 20224 min read Chintan Gala

An analog to digital converter is a circuit that converts a continuous voltage value (analog) to a binary value (digital) that can be understood by

Read More

ADC, Coding, CubeMx, Embedded, Peripheral's, STM32Leave a Comment on STM32-Peripheral’s-ADC: Continuous Mode
Share
Facebook Twitter Pinterest Linkedin
STM32-Peripheral’s-ADC: Polling Method
Embedded System Software's STM32 Peripheral's

STM32-Peripheral’s-ADC: Polling Method

December 4, 2021December 25, 20214 min read Chintan Gala

An analog to digital converter is a circuit that converts a continuous voltage value (analog) to a binary value (digital) that can be understood by

Read More

ADC, Coding, Embedded, Peripheral's, STM32Leave a Comment on STM32-Peripheral’s-ADC: Polling Method
Share
Facebook Twitter Pinterest Linkedin
STM32-Peripheral’s-DAC:
Software's STM32 Peripheral's

STM32-Peripheral’s-DAC:

November 21, 2021December 11, 20213 min read Chintan Gala

The Digital to Analog converter (DAC) is a device, that is widely used for converting digital pulses to analog signals. There are two methods of

Read More

Coding, Embedded, Peripheral's, STM32Leave a Comment on STM32-Peripheral’s-DAC:
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, 2021May 22, 20268 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, 2021May 23, 202610 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, 2021May 23, 20266 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

Posts pagination

Previous 1 … 3 4

Recent Posts

  • STM32 + ESP32/ESP8266 MQTT Tutorial with FreeRTOS: Build Production-Grade IoT Systems (2026 Guide)
  • STM32 Low Power Modes Explained: Sleep, Stop & Standby for Battery-Powered IoT Devices
  • Getting Started with Zephyr RTOS on STM32 — Complete Beginner to Professional Guide (2026)
  • Running TinyML on STM32 with Edge Impulse — Complete Professional Guide
  • Embedded Systems and Microcontrollers: A Market Entering Its Next Phase

Archives

  • May 2026
  • March 2026
  • November 2025
  • October 2025
  • September 2025
  • August 2025
  • March 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
  • AI/ML (3)
  • Coding Reference Guide (3)
  • Design Patterns (5)
  • Design Patterns (7)
  • Design Reference Guide (3)
  • Embedded System (56)
  • IOT (8)
  • Process Reference Guide (1)
  • RTOS (3)
  • Software's (50)
  • STM32 Peripheral's (23)
  • STM32Code (23)
  • STM32CubeIDE (22)

You May Also Like

collection of electronic components for robotics
Embedded System

STM32 + ESP32/ESP8266 MQTT Tutorial with FreeRTOS: Build Production-Grade IoT Systems (2026 Guide)

May 26, 2026May 26, 202620 min read
close up view of an electronic circuit board
Embedded System

STM32 Low Power Modes Explained: Sleep, Stop & Standby for Battery-Powered IoT Devices

May 25, 2026May 26, 20263 min read
black and blue electronic tools on green circuit board
Embedded System

Getting Started with Zephyr RTOS on STM32 — Complete Beginner to Professional Guide (2026)

May 16, 2026May 25, 202612 min read
Electrical light line parking area
AI/ML Design Patterns Embedded System RTOS STM32Code

Running TinyML on STM32 with Edge Impulse — Complete Professional Guide

May 9, 2026May 24, 20269 min read

K

  • Email
    kalapiinfotech@gmail.com
  • AI/ML
  • Coding Reference Guide
  • Design Patterns
  • Design Patterns
  • Design Reference Guide
  • Embedded System
  • IOT
  • Process Reference Guide
  • RTOS
  • Software's
  • STM32 Peripheral's
  • STM32Code
  • STM32CubeIDE
© 2026 Kalapi Infotech. All Rights Reserved.
Proudly powered by WordPress | Theme: Engage News by Candid Themes.