[beken-72xx] Update base core to new structure

This commit is contained in:
Kuba Szczodrzyński
2023-03-04 11:09:27 +01:00
parent c579219427
commit bc328657aa
58 changed files with 510 additions and 392 deletions

View File

@@ -0,0 +1,2 @@
DisableFormat: true
SortIncludes: Never

View File

@@ -75,7 +75,7 @@ void APP_InitTrace(void)
}
extern void main(void);
extern void lt_main(void);
// The Main App entry point
void APP_Start(void)
@@ -112,7 +112,7 @@ void APP_Start(void)
"mov sp, r0\n"
);
main();
lt_main();
#endif // end of #if CONFIG_APP_DEMO
#endif // end of else of "#ifdef CONFIG_MBED_ENABLED"
}