fix(pan-cordio): Increase the maximum number of supported WSF handlers

NRF52480 fails to complete BLE initialisation due to attempting to set
more event handlers than are supported by the WSF library.

Increasing the number of handlers fixes this issue.
pull/8876/head
Steve Cartmell 2018-11-21 17:51:04 +00:00 committed by Vincent Coubard
parent 065bad6fa6
commit f60c2c9aa8
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ WSF_CT_ASSERT(sizeof(uint32_t) == 4);
/* maximum number of event handlers per task */
#ifndef WSF_MAX_HANDLERS
#define WSF_MAX_HANDLERS 9
#define WSF_MAX_HANDLERS 10
#endif
#if WSF_OS_DIAG == TRUE