你好
我修改SDK 5.0.4 \ da1458x_sdk \ 5.0.4 \ projects \ target_apps \ ble_examples \ prox_reporter项目。
我设置const static sleep_state_t app_default_sleep_mode = arch_sleep_off; .user_default_hnd_conf.uc.adcenario = def_adv_forever,
我们使用set_device_to_sleep()函数将设备设置为扩展睡眠模式,
我们使用ACC传感器到唤醒设备,app_acc_wakeup_cb()和app_accint_snifftocwake_cb()是回调,看起来正常。
但有时在app_accint_snifftocwake_cb()中函数app_timer_set(app_alg_period_task_timer,task_app,100);是异常的,app_alg_period_task_timer不起作用,经过很长一段时间(大约五分钟),app_alg_period_task_task_timer开始工作。
请给我一些建议!
静态常量结构ke_msg_handler app_custs1_process_handlers [] = {{APP_ALG_PERIOD_TASK_TIMER,(ke_msg_func_t)app_alg_period_task_timer_handler},{CUSTS1_CREATE_DB_CFM,(ke_msg_func_t)app_custs1_create_db_cfm_handler},{CUSTS1_DISABLE_IND,(ke_msg_func_t)app_custs1_disable_ind_handler},};static int app_alg_period_task_timer_handler(ke_msg_id_t const msgid,void const * param,ke_task_id_t const dest_id,ke_task_id_t const src_id){static int i = 0;app_timer_set(app_alg_period_task_timer,dest_id,100);I ++;ARCH_PRINTF(“i =%d \ r \ n”,i);test_ble_send_data_function();return(ke_msg_consumed);void set_device_to_sleep(void){arch_printf(“set_device_to_sleep \ r \ n”);if(ke_timer_active(app_alg_period_task_timer,task_App)){ke_timer_clear(app_alg_period_task_timer,task_app);} if(ke_state_get(task_app)== app_connected){disconnonnte_no_adv_flag = 1; app_easy_gap_disconnect(save_connection_idx); } app_easy_gap_advertise_stop(); hsppad042a_standby(); hsactd_set_to_sniff(); arch_ble_ext_wakeup_on(); app_accInt_wakeup_enable(); arch_set_extended_sleep(); } static void app_acc_wakeup_cb(void) { disconnect_no_adv_flag = 0; default_advertise_operation(); arch_printf("app_acc_wakeup_cb"); } static void app_accInt_snifftocwake_cb(void) { if (GetBits16(SYS_STAT_REG, PER_IS_DOWN)) { periph_init(); } if (arch_ble_ext_wakeup_get()) { arch_disable_sleep(); arch_ble_force_wakeup(); arch_ble_ext_wakeup_off(); app_easy_wakeup(); } hsactd003a_readsteate_clear_pending(); arch_printf("app_accInt_snifftocwake_cb\r\n"); app_timer_set(APP_ALG_PERIOD_TASK_TIMER, TASK_APP, 100); app_accInt_wakeup_enable(); } void app_accInt_wakeup_enable(void) { app_easy_wakeup_set(app_acc_wakeup_cb); wkupct_register_callback(app_accInt_snifftocwake_cb); // if (!GPIO_GetPinStatus(GPIO_ACCINT_PORT, GPIO_ACCINT_PIN)) { wkupct_enable_irq(WKUPCT_PIN_SELECT(GPIO_ACCINT_PORT, GPIO_ACCINT_PIN), // select pin WKUPCT_PIN_POLARITY(GPIO_ACCINT_PORT, GPIO_ACCINT_PIN, WKUPCT_PIN_POLARITY_HIGH), 1, // 1 event 3); // debouncing time = 0 } }
关键词:
设备:
你好
不推荐App_timer_set () ?我将app_easy_timer函数替换为app_timer_set。
我烧代码到flash(M24M01-RMN6TP),基于prox_reporter项目,不包括OTA,我也不使用spi,
但似乎闪光消耗了很多电流。我需要配置SPI引脚?我该怎么办?
我使用spi_flash_enable(SPI_EN_GPIO_PORT, SPI_EN_GPIO_PIN);和spi_flash_power_down ();在user_app_on_init()函数,
目前的消费似乎更大。
谢谢!
嗨Lewuyouc,
你能不能让我知道你想在app_accint_snifftoctocwake_cb内的计时器完成什么?使用app_timer_set()函数您是一个内核计时器。我们建议使用App_easy_timer()API,该API创建一个新的计时器,如果需要,并激活BLE。但请描述该功能内部的使用情况。当您使用app_easy_timer替换app_timer_set时,您还在面临同样的问题吗?由于设备进入扩展睡眠模式,因此SPI闪光灯通电时的电流消耗如何?您是正确的,SPI闪光灯会增加电流消耗,因此您必须向下为其供电。您能否请将所有传感器从您的定制板上取下并测量扩展睡眠模式下的电流消耗,并使用SPI闪光通电?我想你用精确的amperemeter测量扩展的睡眠电流,而不是使用SmartSnippets工具箱的使用。
谢谢,PM_Dialog
嗨PM_Dialog
我使用app_accInt_snifftocwake_cb重新启动定时器,定期获取传感器数据。app_easy_timer函数正常工作。
在user_app_on_init中我设置spi flash是关机的,我们在延长睡眠模式下检查大约4uA的功耗。我认为
功耗正常。
问题:我使用smartsnippets将我的代码刻录到spi flash。我设置spi flash在user_app_on_init中关闭了电源,因此SPI闪存始终是
系统电源关闭。但启动代码是从spi flash获得的,我只知道我设置了spi断电,我的板从延长睡眠模式中唤醒,
启动代码可以正常工作?
问题:我设置睡眠模式后,有时启动不工作。就像没有程序的新董事会一样。
嗨Lewuyouc,
在DA1458x系列设备中,代码总是从内部系统ram执行。这意味着,由于您已经用固件烧毁了SPI Flash,所以当设备启动时,将从System-RAM复制并执行固件。因此,当您在user_app_on_init中关闭flash时,固件已经复制到System-RAM中,这就是您可以成功引导的原因。
谢谢,PM_Dialog