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
5685b565
Commit
5685b565
authored
Jul 05, 2015
by
Daniel Campora
Browse files
cc3200: Create /flash/sys and /flash/lib directories while booting.
parent
76e52b5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
cc3200/mptask.c
View file @
5685b565
...
...
@@ -308,7 +308,6 @@ STATIC void mptask_init_sflash_filesystem (void) {
// Initialise the local flash filesystem.
// Create it if needed, and mount in on /flash.
// try to mount the flash
FRESULT
res
=
f_mount
(
sflash_fatfs
,
"/flash"
,
1
);
if
(
res
==
FR_NO_FILESYSTEM
)
{
// no filesystem, so create a fresh one
...
...
@@ -334,6 +333,16 @@ STATIC void mptask_init_sflash_filesystem (void) {
// It is set to the internal flash filesystem by default.
f_chdrive
(
"/flash"
);
// create /flash/sys and /flash/lib if they don't exist
if
(
FR_OK
!=
f_chdir
(
"/flash/sys"
))
{
res
=
f_mkdir
(
"/flash/sys"
);
}
if
(
FR_OK
!=
f_chdir
(
"/flash/lib"
))
{
res
=
f_mkdir
(
"/flash/lib"
);
}
f_chdir
(
"/flash"
);
// Make sure we have a /flash/boot.py. Create it if needed.
res
=
f_stat
(
"/flash/boot.py"
,
&
fno
);
if
(
res
==
FR_OK
)
{
...
...
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