aboutsummaryrefslogtreecommitdiff
path: root/robot/modes.c
blob: c22875cbf1ed13e808eb4b79c5c4e7b2776b97c6 (plain)
1
2
3
4
5
6
#include "modes.h"
#include "halt.h"

void (*g_w2_current_mode)() = &w2_mode_halt;

void w2_modes_main() { (*g_w2_current_mode)(); }