mirror of https://github.com/ARMmbed/mbed-os.git
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
parent
065bad6fa6
commit
f60c2c9aa8
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue