Skip to content

Commit

Permalink
updated examples
Browse files Browse the repository at this point in the history
  • Loading branch information
rajszym committed May 13, 2020
1 parent 54589db commit eeffcfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/virtual_proc.cpp_
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ struct myTask : public Task
struct slaTask : public myTask
{
virtual
void main()
void main() override
{
sem.wait();
led.tick();
Expand All @@ -31,7 +31,7 @@ struct slaTask : public myTask
struct masTask : public myTask
{
virtual
void main()
void main() override
{
ThisTask::sleepFor(SEC);
sem.give();
Expand Down

0 comments on commit eeffcfe

Please sign in to comment.