The Android and Linux operating systems have become very popular in the last few years. Due to their open source nature, the cost is right and thankfully large numbers of engineers have joined in the effort to port these operating systems to nearly ever platform imaginable. Their wide use makes it nearly inevitable that at … Continue reading Embedded Linux – Shell Scripting 101
Month: September 2013
State Machines with Function Pointers
Function pointers can be used for a wide variety of applications including the implementation of state machines. Just like any tool, it may not always be appropriate to use function pointers for a state machine implementation. A couple of common methods for implementing state machines is either the use of if/else statements or the use … Continue reading State Machines with Function Pointers