File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22# Each line is a pattern that must appear in the monitor-gdb output
33# Lines starting with # are comments and empty lines are ignored
44
5- stm32f746xg@/>
5+ DMOD-Boot started
Original file line number Diff line number Diff line change @@ -280,8 +280,6 @@ int main(int argc, char** argv)
280280 dmlog_ctx_t ctx = dmlog_create (logs_start , logs_size );
281281 dmlog_set_as_default (ctx );
282282
283- dmlog_puts (ctx , "DMOD-Boot started\n" );
284-
285283 void * heap_start = & __heap_start__ ;
286284 void * heap_end = & __heap_end__ ;
287285 size_t heap_size = (size_t )((uintptr_t )heap_end - (uintptr_t )heap_start );
@@ -335,6 +333,9 @@ int main(int argc, char** argv)
335333 // Load startup.dmp if embedded in ROM
336334 load_embedded_startup_dmp ();
337335
336+ // Mark that the boot process is done
337+ dmlog_puts (ctx , "DMOD-Boot started\n" );
338+
338339 // Start main module if loaded
339340 start_main_module (mainModule );
340341
You can’t perform that action at this time.
0 commit comments