I am just wondering if anyone know of some good tutorials on the Internet for developing state machines. Or ebooks?
I am starting working on state machines and just need something general to get me started.
|
I am just wondering if anyone know of some good tutorials on the Internet for developing state machines. Or ebooks? I am starting working on state machines and just need something general to get me started. |
|||||||
|
|
State machines are very simple in C if you use function pointers. Basically you need 2 arrays - one for state function pointers and one for state transition rules. Every state function returns the code, you lookup state transition table by state and return code to find the next state and then just execute it.
I don't put That's the way I do state machines for years. |
||||
|
|
|
State machines are not something that inherently needs a tutorial to be explained or even used. What I suggest is that you take a look at the data and how it needs to be parsed. For example, I had to parse the data protocol for a Near Space balloon flight computer, it stored data on the SD card in a specific format (binary) which needed to be parsed out into a comma seperated file. Using a state machine for this makes the most sense because depending on what the next bit of information is we need to change what we are parsing. The code is written using C++, and is available as ParseFCU. As you can see, it first detects what version we are parsing, and from there it enters two different state machines. It enters the state machine in a known-good state, at that point we start parsing and depending on what characters we encounter we either move on to the next state, or go back to a previous state. This basically allows the code to self-adapt to the way the data is stored and whether or not certain data exists at all even. In my example, the GPS string is not a requirement for the flight computer to log, so processing of the GPS string may be skipped over if the ending bytes for that single log write is found. State machines are simple to write, and in general I follow the rule that it should flow. Input going through the system should flow with certain ease from state to state. |
|||||||||||
|
|
Real-Time Object-Oriented Modeling was fantastic (published in 1994 and now selling for as little as 81 cents, plus $3.99 shipping). |
|||||
|
|
I prefer using function pointers over gigantic Also, in most cases you'll want a mechanism to pass along additional data. Here's an example state machine:
|
|||
|
Unfortunately, most of the articles on state machines are written for C++ or other languages that have direct support for polymorphism as it's nice to model the states in an FSM implementation as classes that derive from an abstract state class. However, it's pretty easy to implement state machines in C using either switch statements to dispatch events to states (for simple FSMs, they pretty much code right up) or using tables to map events to state transitions. There are a couple of simple, but decent articles on a basic framework for state machines in C here:
One such framework is outlined by Steve Rabin in "Game Programming Gems" Chapter 3.0 (Designing a General Robust AI Engine). A similar set of macros is discussed here: If you're also interested in C++ state machine implementations there's a lot more that can be found. I'll post pointers if you're interested. |
|||||
|
|
There is a lot of lesson to learn handcrafting state machines in C, but let me also suggest Ragel state machine compiler: http://www.complang.org/ragel/ It has quite simple way of defining state machines and then you can generate graphs, generate code in different styles (table-driven, goto-driven), analyze that code if you want to, etc. And it's powerful, can be used in production code for various protocols. |
|||
|
|
|
I made some google search about state machines in c . And found a link with some explanation very similar to what qrdl tried to explain . |
|||
|
|
|
This is all you need to know.
|
|||||||||||||||||
|