Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
PetePriority
firmware
Commits
21bea290
Commit
21bea290
authored
Aug 23, 2019
by
schneider
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(harmonic-test): invalidate external fs
parent
311d5a0f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
hw-tests/fundamental-test/main.c
hw-tests/fundamental-test/main.c
+5
-0
hw-tests/fundamental-test/meson.build
hw-tests/fundamental-test/meson.build
+1
-1
No files found.
hw-tests/fundamental-test/main.c
View file @
21bea290
...
...
@@ -17,6 +17,8 @@
#include "tmr_utils.h"
#include "adc.h"
#include "flc.h"
#include "mx25.h"
#include "mx25lba.h"
#include "gfx.h"
#include "display.h"
...
...
@@ -204,6 +206,9 @@ int main(void)
Color
yellow
=
gfx_color
(
&
display_screen
,
YELLOW
);
mx25_init
();
MX25_Erase
(
0
,
MX25_Erase_4K
);
sprintf
(
buf
,
"<-Press
\n
"
);
printf
(
buf
);
gfx_puts
(
&
Font24
,
&
display_screen
,
0
,
0
,
buf
,
yellow
,
black
);
...
...
hw-tests/fundamental-test/meson.build
View file @
21bea290
...
...
@@ -3,7 +3,7 @@ name = 'fundamentaltest'
elf = executable(
name + '.elf',
'main.c',
dependencies: [libcard10, max32665_startup],
dependencies: [libcard10, max32665_startup
, mx25lba
],
link_whole: [max32665_startup_lib, board_card10_lib],
link_args: [
'-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment