Skip to content

Commit

Permalink
Fix stack overflow (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
cquesnel authored Oct 7, 2021
1 parent 7075d75 commit 8740cbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class BittyBuzzTask : public AbstractTask<10 * configMINIMAL_STACK_SIZE> {
}
};

class MessageDispatcherTask : public AbstractTask<10 * configMINIMAL_STACK_SIZE> {
class MessageDispatcherTask : public AbstractTask<12 * configMINIMAL_STACK_SIZE> {
public:
MessageDispatcherTask(const char* taskName,
UBaseType_t priority,
Expand Down

0 comments on commit 8740cbf

Please sign in to comment.