# HG changeset patch # User Mychaela Falconia # Date 1620594292 0 # Node ID 12b20090b46a98ff89d91f80dde7e29b10653dc2 # Parent d25af5b7e773ef5ba6edc8545da4943d800ed8ff ETM: add phone-on command to FCBM diff -r d25af5b7e773 -r 12b20090b46a src/cs/services/etm/etm_tmcore.c --- a/src/cs/services/etm/etm_tmcore.c Sun May 09 20:38:06 2021 +0000 +++ b/src/cs/services/etm/etm_tmcore.c Sun May 09 21:04:52 2021 +0000 @@ -36,6 +36,11 @@ /* FreeCalypso addition for KPD_PWR testing */ #include "kpd/kpd_power_api.h" +/* Further FreeCalypso addition: phone-on command */ +#ifdef RVM_FCBM_SWE +#include "fcbm/fcbm_send_msg.h" +#endif + // Version of the ETM CORE module // See the file etm_version.h @@ -350,6 +355,12 @@ case 6: (Kp.released)(); break; + /* Further FreeCalypso addition: phone-on command */ +#ifdef RVM_FCBM_SWE + case 7: + fcbm_message_to_task(FCBM_START_PHONE); + break; +#endif default: error = ETM_NOSYS; }