File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -134,6 +134,8 @@ MBED_NORETURN void mbed_rtos_start(void);
134
134
*
135
135
* Preconditions:
136
136
* - The RTOS has been started by a call to mbed_rtos_start
137
+ * - If the platform is supported by TF-M, initialization
138
+ * has been done by a call to mbed_tfm_init
137
139
*/
138
140
void mbed_toolchain_init (void );
139
141
@@ -160,7 +162,6 @@ void mbed_sdk_init(void);
160
162
*
161
163
* Preconditions:
162
164
* - The RTOS has been started by a call to mbed_rtos_start
163
- * - The toolchain has been initialized by a call to mbed_toolchain_init
164
165
*/
165
166
void mbed_tfm_init (void );
166
167
Original file line number Diff line number Diff line change @@ -95,8 +95,8 @@ void mbed_init(void)
95
95
void mbed_start (void )
96
96
{
97
97
mbed_rtos_init_singleton_mutex ();
98
- mbed_toolchain_init ();
99
98
mbed_tfm_init ();
99
+ mbed_toolchain_init ();
100
100
mbed_main ();
101
101
mbed_error_initialize ();
102
102
main ();
You can’t perform that action at this time.
0 commit comments