Hi,
With the new firmware, when i press on the right keys, bluetooth turn off but all task turn off too. How can i change that?
I need to control humidity sensor without bluetooth.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
If i launch task when the Ble is enable and i stop when the ble is disable or vice versa (after 180s or if i press rightkeys), my sensor is here :
/*
* ======== Hwi_excHandler ========
*/
Void Hwi_excHandler(UInt *excStack, UInt lr)
{
Hwi_module->excActive[0] = TRUE;
/* spin here if no exception handler is plugged */
while (Hwi_excHandlerFunc == NULL) {
;
}
Hwi_excHandlerFunc(excStack, lr);
}
I want to disable or enable ble without stop any tasks they are working on.
I read swru393c but not found my answer.