kbumsik / WolfieMouse

IEEE Reion 1 Micromouse competition.
56 stars 30 forks source link

Fix incorrect priority settings #73 #74

Closed kbumsik closed 5 years ago

kbumsik commented 5 years ago

The problem with higher priority thread being blocked by lower priority is caused by wrong thread priority settings. Some thread have the priority of configMAX_PRIORITIES, which is invalid. The highest possible priority is configMAX_PRIORITIES - 1. Also I set the logger thread to the lowest priority among "normal" threads.


This change is Reviewable