Skip to content
Saturday, May 17, 2025

Kalapi Infotech

Embedded Product – Infotech Developer

  • About Us
  • Topics
    • 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
    • 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
  • Chintan Gala

Author: Chintan Gala

STM32C031C6Tx microcontroller examples for GPIO, I2C, SPI, and UART using HAL.
Embedded System IOT Software's STM32 Peripheral's STM32Code STM32CubeIDE

STM32C031C6Tx microcontroller examples for GPIO, I2C, SPI, and UART using HAL.

December 27, 2024December 27, 20242 min read Chintan Gala

The STM32C031C6Tx is a feature-rich 32-bit ARM Cortex-M0+ microcontroller designed for cost-sensitive and low-power applications. With a compact LQFP-48 package, this microcontroller delivers a balance

Read More

Coding, CubeMx, Embedded, Peripheral's, STM32Leave a Comment on STM32C031C6Tx microcontroller examples for GPIO, I2C, SPI, and UART using HAL.
Share
Facebook Twitter Pinterest Linkedin
STM32C0 Series Overview
Software's STM32 Peripheral's STM32Code STM32CubeIDE

STM32C0 Series Overview

December 2, 2024December 27, 20244 min read Chintan Gala

The STM32C0 Series is a family of microcontrollers developed by STMicroelectronics. It is based on the ARM Cortex-M0+ core, optimized for cost-sensitive applications with constrained

Read More

CubeMx, Design, Embedded, STM32Leave a Comment on STM32C0 Series Overview
Share
Facebook Twitter Pinterest Linkedin
Comprehensive Comparison of STM32 MCUs: Applications, Features, and Categories
Embedded System Software's STM32 Peripheral's STM32Code STM32CubeIDE

Comprehensive Comparison of STM32 MCUs: Applications, Features, and Categories

November 27, 2024December 27, 20245 min read Chintan Gala

The STM32 family from STMicroelectronics offers a wide range of 32-bit microcontrollers based on ARM Cortex cores, categorized into different series to suit specific applications.

Read More

CubeMx, Embedded, Peripheral's, STM32Leave a Comment on Comprehensive Comparison of STM32 MCUs: Applications, Features, and Categories
Share
Facebook Twitter Pinterest Linkedin
Essential Linux Commands Every Embedded Programmer Should Know
Embedded System

Essential Linux Commands Every Embedded Programmer Should Know

September 23, 2024September 23, 202411 min read Chintan Gala

In the world of embedded programming, Linux is often the go-to platform for development, debugging, and deployment. Whether you’re working on microcontrollers, system-on-chips (SoCs), or

Read More

Coding, EmbeddedLeave a Comment on Essential Linux Commands Every Embedded Programmer Should Know
Share
Facebook Twitter Pinterest Linkedin
Implementation of SPI communication using bit banging
Embedded System Software's STM32Code STM32CubeIDE

Implementation of SPI communication using bit banging

October 30, 2022February 5, 20235 min read Chintan Gala

Introductions: Serial peripheral interface (SPI) is one of the most widely used interfaces between microcontroller and peripheral ICs such as sensors, ADCs, DACs, shift registers,

Read More

Bit Banging, Design, Embedded, SPILeave a Comment on Implementation of SPI communication using bit banging
Share
Facebook Twitter Pinterest Linkedin
IOT Sensor’s: Accelerometer
Embedded System

IOT Sensor’s: Accelerometer

October 9, 2022January 28, 20232 min read Chintan Gala

Introduction: An accelerometer is a tool that measures proper acceleration. Proper acceleration is the acceleration (the rate of change of velocity) of a body in its own instantaneous rest frame; this is different from coordinate

Read More

Embedded, IOT, SensorsLeave a Comment on IOT Sensor’s: Accelerometer
Share
Facebook Twitter Pinterest Linkedin
IOT Sensor’s: Temperature sensor’s
Embedded System

IOT Sensor’s: Temperature sensor’s

September 27, 2022January 28, 20232 min read Chintan Gala

Introduction A temperature sensor is a device that measures the temperature of a physical system and converts the temperature into an electrical signal that can

Read More

Embedded, IOT, SensorsLeave a Comment on IOT Sensor’s: Temperature sensor’s
Share
Facebook Twitter Pinterest Linkedin
List of video courses as an embedded developer must do
Coding Reference Guide Design Reference Guide Embedded System Software's

List of video courses as an embedded developer must do

September 24, 2022February 5, 20236 min read Chintan Gala

List of video lectures: 1. Electronics Foundations: Fundamentals Course description Working with electronics can be a ton of fun, but it can also be a

Read More

Coding, Design, Embedded, tutorialsLeave a Comment on List of video courses as an embedded developer must do
Share
Facebook Twitter Pinterest Linkedin
Implementation of I2C communication using bit banging
Embedded System Software's STM32Code

Implementation of I2C communication using bit banging

July 30, 2022February 5, 202311 min read Chintan Gala

Introduction: The I2C bus was designed by Philips in the early ’80s to allow easy communication between components which reside on the same circuit board. Philips

Read More

Bit Banging, Coding, Design, Embedded, I2C, Peripheral'sLeave a Comment on Implementation of I2C communication using bit banging
Share
Facebook Twitter Pinterest Linkedin
STM32-Peripheral’s : Comparator
Embedded System Software's STM32 Peripheral's STM32Code STM32CubeIDE

STM32-Peripheral’s : Comparator

July 2, 2022August 6, 20225 min read Chintan Gala

Comparator introduction The Analog Comparator is used to compare the voltage of two analog inputs, with a digital outputindicating which input voltage is higher. Inputs

Read More

Coding, Design, Embedded, Peripheral's, STM32Leave a Comment on STM32-Peripheral’s : Comparator
Share
Facebook Twitter Pinterest Linkedin

Posts navigation

1 2 … 5 Next

Recent Posts

  • STM32C031C6Tx microcontroller examples for GPIO, I2C, SPI, and UART using HAL.
  • STM32C0 Series Overview
  • Comprehensive Comparison of STM32 MCUs: Applications, Features, and Categories
  • Essential Linux Commands Every Embedded Programmer Should Know
  • Implementation of SPI communication using bit banging

Archives

  • December 2024
  • November 2024
  • September 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

Embedded System IOT Software's STM32 Peripheral's STM32Code STM32CubeIDE

STM32C031C6Tx microcontroller examples for GPIO, I2C, SPI, and UART using HAL.

December 27, 2024December 27, 20242 min read
Software's STM32 Peripheral's STM32Code STM32CubeIDE

STM32C0 Series Overview

December 2, 2024December 27, 20244 min read
Embedded System Software's STM32 Peripheral's STM32Code STM32CubeIDE

Comprehensive Comparison of STM32 MCUs: Applications, Features, and Categories

November 27, 2024December 27, 20245 min read
Embedded System

Essential Linux Commands Every Embedded Programmer Should Know

September 23, 2024September 23, 202411 min read

K

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