Skip to content
Snippets Groups Projects
Verified Commit 984f1634 authored by rahix's avatar rahix
Browse files

feat: Add epicardium stub


Signed-off-by: default avatarRahix <rahix@rahix.de>
parent 45653dc4
No related branches found
No related tags found
No related merge requests found
#include "card10.h"
int main(void)
{
card10_init();
card10_diag();
}
name = 'epicardium'
elf = executable(
name + '.elf',
'main.c',
dependencies: [libcard10, max32665_startup_core0],
link_whole: [max32665_startup_core0_lib, board_card10_lib],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
],
)
custom_target(
name + '.bin',
build_by_default: true,
output: name + '.bin',
input: elf,
command: [build_image, '@INPUT@', '@OUTPUT0@'],
)
......@@ -32,4 +32,6 @@ python3 = 'python3'
subdir('lib/')
subdir('bootloader/')
subdir('epicardium/')
subdir('hw-tests/')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment