Home2023-04-13T07:26:18+03:00
In an inertial frame of reference, an object either remains at rest or continues to move at a constant velocity, unless acted upon by a force.
Newton’s First Law, Isaac Newton

Latest Posts

Import JSON file in TypeScript

In this example, I will show you a simple way to import JSON files in TypeScript code. It requires just two simple steps. The first is to change the tsconfig.json file by adding the line: , "resolveJsonModule": true in "compilerOptions" section. { "compilerOptions": { ... , "resolveJsonModule": true ... } ...

Categories: How To|

An Introduction to USB Communication (Part 1)

USB (Universal Serial Bus) is an industry-standard used to specify cables, connectors, and protocols that are used for communication between electronic devices. Advantages: Self-configuring interface, no need for user configuration of speed, data protocol, etc.Capable of supplying power to small auxiliary devicesVarious communication speeds are supportedStandard connectorsError checking increases the

Categories: Embedded Systems|Tags: |

FreeRTOS: Using MCU Peripheral Drivers

Communication interfaces (I2C, SPI, UART, etc.) are some of the most commonly used microcontroller peripherals in embedded systems. In this introductory article, we will look at how low-level drivers for such peripherals can be used in FreeRTOS. Polled Drivers vs Interrupt-driven Drivers Based on the method used for getting information

Categories: Embedded Systems|Tags: , |
Go to Top