Closed awneil closed 3 years ago
In the RTT log:
00> [000] Sensor Action: Device booted 00> assertion "is_fs_init_completed" failed: file "...stack\framework\components\fs\fs.c", line 314, function: fs_file_stat
It happens at this point in sensor.c:
sensor.c
void bootstrap() { log_print_string("Device booted\n"); d7ap_init(); alp_layer_init(NULL, false); <<<--- Here ! init_user_files();
Swapping the order of the alp_layer_init and d7ap_init calls - so that alp_layer_init comes first - seems to fix it.
alp_layer_init
d7ap_init
SHA-1: 42d6bbff887b5a1789f5f01795f3d111467c400c
Thanks, fixed in c25da89
In the RTT log:
It happens at this point in
sensor.c
:Swapping the order of the
alp_layer_init
andd7ap_init
calls - so thatalp_layer_init
comes first - seems to fix it.SHA-1: 42d6bbff887b5a1789f5f01795f3d111467c400c