Introduction to GPIO
GPIO, General Purpose Input Output is a set of pins in the microcontroller, which functions by passing data into and out of the board. They… Read More »Introduction to GPIO
GPIO, General Purpose Input Output is a set of pins in the microcontroller, which functions by passing data into and out of the board. They… Read More »Introduction to GPIO
To completely define a variable, not only the ‘type’ of variable, the ‘storage class’ of the variable is also important. In other words, not only… Read More »Storage classes in C
Macros are a type of pre-processor. Pre-processors begin with the “#” symbol and are also called directives. They are of great convenience to the programmers… Read More »How to use #define Macros in C
Have you ever wondered, what might be the reason for, when you connect a device with USB to a computer and the computer doesn’t detect… Read More »Device Drivers Development – Introduction