Hierarchical State Machine Program Code

Our software was built using both Hierarchical State Machines (HSMs) and Flat State Machines. There are two major state machines, TopRobot and TopCommunication. TopRobot handles motion across the field, shooting and strategy, while TopCommunication handles communication with the SPI. The descriptions for the different State Machines are as follows:


State Charts

Top Robot

This top level HSM handles motion, shooting and strategy, implemented via each of its sub State Machines.


Top Communication

This State Machine handles the communication of the PAC with the Super-PAC and shuttles information back and forth to TopRobot upon initiation of an SPI Transfer request. All 5 bytes are sent to the Super-PAC at once, and the data from the Super-PAC is collected upon an End-of-Transmit Interrupt.


Substates

Station Capturing

This SM implements the entire sequence of SPI back and forth events to capture a state, including all the sub-cases wherein an Acknowledgement packet is not received, or if the robot is blocked by an AdAttack from an opposing team.


Game Intelligence

This SM updates the winning/losing status every time 3idiots captures a station. Further, the initial game start event, which switches on the green status LED on top of the robot happens in this SM. The information about the win/lose status is used to decide whether to shoot an AdAttack or not.


Shooting

This SM implements the “hard-coded” strategy to move towards the AdAttack bucket and shoot a ball in using the gate servo and the ruler servo. We only enter this state if we are winning by a margin of 3 and the time has crossed 38 seconds from the end of the game. Knowledge of which direction to move is found by keeping track of previous captured cities by querying the StationCapturing SM.


The zip file contains the entire program including the HSM framework that was used.

Alternatively, you can view the individual header file, and source file for each module by clicking on the links below.


Modules