Linux Device Driver Programming 15- Linux kernel module Introduction
Linux kernel module Introduction From this article onwards, let's explore about the Linux kernel modules and let's write a simple hello world kernel module. First, let's learn how…
Linux kernel module Introduction From this article onwards, let's explore about the Linux kernel modules and let's write a simple hello world kernel module. First, let's learn how…
Different approach to implement state machine In this article, let’s begin with implementing a state machine. There are different approaches. Nested switch approach we also explored…
Exercise-003 Defining initial transition function In the protimer_state_mach.cpp, we will implement the state machine. First, let’s start with our initial transition. #include "main.h" void protimer_init(protimer_t *mobj){ mobj->active_state…
Exercise-003 Data structure explanation In the previous article, we set up the IDE, and in this article, let’s start implementing. The first step is to create a…
How to enable internet over USB? In the previous article, we updated our kernel image. In this article, I'm going to explain how you can enable the…
Update new boot images and modules in SD card In our previous article, we successfully completed the compilation of the Linux kernel and generated both the new…