Forked from
card10 / firmware
1831 commits behind the upstream repository.
-
rahix authored
This dual-core example works by creating two separate elfs and flashing them to different offsets. Co-authored-by:
schneider <schneider@blinkenlichts.net> Signed-off-by:
Rahix <rahix@rahix.de>
rahix authoredThis dual-core example works by creating two separate elfs and flashing them to different offsets. Co-authored-by:
schneider <schneider@blinkenlichts.net> Signed-off-by:
Rahix <rahix@rahix.de>
meson.build 425 B
name = 'dual-core0'
executable(
name + '.elf',
'main.c',
dependencies: [libcard10, max32665_startup_core0],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
)
name = 'dual-core1'
executable(
name + '.elf',
'core1.c',
dependencies: [periphdriver, board_card10, max32665_startup_core1],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
)