1234567891011121314151617181920212223242526272829303132333435 |
- /*********************************************************************
- * INCLUDES
- */
- #include "ble_comm.h"
- #include "app_flash.h"
- #include "hal_ble_client.h"
- #include "app_safe.h"
- #include "app_flash.h"
- static void app_safe_Process(void)
- {
- if(mFlash.RestartCnt > 1){
- char buff[40]={0};
- memset(buff,0,sizeof(buff));
- if(mFlash.isHost){
- sprintf(buff,"left shoes restart:%d",mFlash.RestartCnt);
- }else{
- sprintf(buff,"right shoes restart:%d",mFlash.RestartCnt);
- }
- Except_TxError(EXCEPT_Power,(const char*)buff);
- }
- }
- void app_safe_Init(void)
- {
- mFlash.RestartCnt++;
- Process_Start(10000,"app_safe_Process",app_safe_Process);
- }
-
|