Skip to content

Commit

Permalink
fix to continue dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
benderuchile committed Jul 26, 2017
1 parent a6a569a commit 09d6f84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uchile_speech_pocketsphinx/Grammar/Stage1/continue.jsgf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

grammar sentence;

public <sentence> = (BENDER) continue | <noise> [<noise>] [<noise>];
public <sentence> = [BENDER] CONTINUE | <noise> [<noise>] [<noise>];


/* ------------- GRAMMAR --------------- */
Expand Down
2 changes: 1 addition & 1 deletion uchile_speech_pocketsphinx/src/tester2.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def tester_client():
client.wait_for_server()

# Creates a goal to send to the action server.
goal = uchile_speech_pocketsphinx.msg.DoRecognitionGoal(dictionary="Stage1/SPR/questions")
goal = uchile_speech_pocketsphinx.msg.DoRecognitionGoal(dictionary="Stage1/continue")

# Sends the goal to the action server.
client.send_goal(goal)
Expand Down

0 comments on commit 09d6f84

Please sign in to comment.