FSM Lecture 42- 2D arrays in C
2D arrays in C In this article, let's learn about the two-dimensional arrays in 'C.' For example, if you consider uint8_t scores[3] = {10, 20,…
2D arrays in C In this article, let's learn about the two-dimensional arrays in 'C.' For example, if you consider uint8_t scores[3] = {10, 20,…
Exercise-004 State table approach for implementation of an FSM part-2 Now the addresses of the event handlers should be stored in the State table. That's why you…
Exercise-004 State table approach for implementation of an FSM part-1 We will study the state table approach in this article. And in the previous article, we discussed…
Exercise-004 Implementation using state handler approach In this article, let's understand the State handler approach. This is almost similar to the previous one. But the important difference…
Passing function pointers as function arguments In this article, let's learn how to pass a function pointer as an argument to another function. We'll do a small…
Function pointers in C The previous article explored the nested switch approach to implement the state machine. State Handler Approach: The state handler approach involves…