Skip to content

Commit

Permalink
fixup! Simplify main function
Browse files Browse the repository at this point in the history
  • Loading branch information
Peque committed Oct 8, 2018
1 parent 6faa22a commit 51e31c5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,10 @@ int main(void)
{
setup();
systick_interrupt_enable();
// competition();
competition();
while (1) {
if (button_left_read_consecutive(500)) {
if (button_left_read_consecutive(500))
training();
}
execute_commands();
}

Expand Down

0 comments on commit 51e31c5

Please sign in to comment.