Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
bfb01e9d
Commit
bfb01e9d
authored
Jan 29, 2014
by
mux
Browse files
Fix unused function warning in main
* Add SD card test to fix warning
parent
8592d85b
Changes
1
Hide whitespace changes
Inline
Side-by-side
stm/main.c
View file @
bfb01e9d
...
...
@@ -206,12 +206,14 @@ static mp_obj_t pyb_info(void) {
return
mp_const_none
;
}
#if MICROPY_HW_HAS_SDCARD
// SD card test
static
mp_obj_t
pyb_sd_test
(
void
)
{
extern
void
sdio_init
(
void
);
sdio_init
();
return
mp_const_none
;
}
#endif
static
void
SYSCLKConfig_STOP
(
void
)
{
/* After wake-up from STOP reconfigure the system clock */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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