summaryrefslogtreecommitdiffhomepage
path: root/digital/io/src/top_cb.c
diff options
context:
space:
mode:
authorJérémy Dufour2008-04-23 11:00:58 +0200
committerJérémy Dufour2008-04-23 11:00:58 +0200
commit064deb14701108ba74ed8956adde1c4ac8b3d93c (patch)
tree13e1e320235ccb1f5d9c083057822eeba1140bd6 /digital/io/src/top_cb.c
parent775eaa0998d0257b6fcd55048c98fa847183892b (diff)
* digital/io/src
- main_loop always notices top FSM about jack states change.
Diffstat (limited to 'digital/io/src/top_cb.c')
-rw-r--r--digital/io/src/top_cb.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/digital/io/src/top_cb.c b/digital/io/src/top_cb.c
index a1bdee4a..65754f90 100644
--- a/digital/io/src/top_cb.c
+++ b/digital/io/src/top_cb.c
@@ -155,13 +155,11 @@ top__GO_TO_SAMPLE_DISTRIBUTOR__move_fsm_finished (void)
/*
* IDLE =start=>
* => WAIT_JACK_IN
- * tell the main loop we want to be informed when the jack is inserted into the
- * bot
+ * wait for the jack to be inserted into the bot
*/
fsm_branch_t
top__IDLE__start (void)
{
- /* TODO */
return top_next (IDLE, start);
}
@@ -223,13 +221,11 @@ top__GET_ICE_FROM_ADVERSE_ICE_DISTRIBUTOR__get_samples_fsm_finished (void)
/*
* WAIT_JACK_IN =jack_inserted_into_bot=>
* => WAIT_JACK_OUT
- * tell the main loop we want to be informed when the jack is removed from the
- * bot
+ * wait for the jack to be removed from the bot
*/
fsm_branch_t
top__WAIT_JACK_IN__jack_inserted_into_bot (void)
{
- /* TODO */
return top_next (WAIT_JACK_IN, jack_inserted_into_bot);
}