File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
src/modm/platform/core/rp Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -222,19 +222,23 @@ struct Core1 : Core
222
222
/// @{
223
223
%% for i in range(num_cores)
224
224
/// Places initialized objects into the core{{i}}-coupled memory
225
- #define modm_core {{i}}_data modm_section(".data_core{{i}}")
225
+ #define modm_fastdata_core {{i}} modm_section(".data_core{{i}}")
226
226
%% endfor
227
227
%% for i in range(num_cores)
228
228
/// Places zeroed objects into the core{{i}}-coupled memory
229
- #define modm_core {{i}}_bss modm_section(".bss_core{{i}}")
229
+ #define modm_bss_core {{i}} modm_section(".bss_core{{i}}")
230
230
%% endfor
231
231
%% for i in range(num_cores)
232
232
/// Places uninitialized objects into the core{{i}}-coupled memory
233
- #define modm_core{{i}}_noinit modm_section(".noinit_core{{i}}")
233
+ #define modm_noinit_core{{i}} modm_section(".noinit_core{{i}}")
234
+ %% endfor
235
+ %% for i in range(num_cores)
236
+ /// Places stacks into the core{{i}}-coupled memory
237
+ #define modm_faststack_core{{i}} modm_noinit_core{{i}}
234
238
%% endfor
235
239
%% for i in range(num_cores)
236
240
/// Places functions into the core{{i}}-coupled memory
237
- #define modm_core {{i}}_code modm_core {{i}}_data
241
+ #define modm_fastcode_core {{i}} modm_fastdata_core {{i}}
238
242
%% endfor
239
243
/// Weak callback to initialize CPU1
240
244
extern "C" void
You can’t perform that action at this time.
0 commit comments