操作系统的软定时器,新建了,没有调用过定时回调函数,怎么解?



  • void user_entry_after_ble_init(void)
    {
    co_printf("BLE Central\r\n");
    system_sleep_disable();

    os_timer_init(&os_timer_test,os_timer_test_cb,NULL);
    
    os_timer_start(&os_timer_test,2000,1);