diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-12-25 19:11:37 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-12-25 19:22:16 +0200 |
commit | b4c65c253fbd8d020df45ae585c9d1b97ef361a6 (patch) | |
tree | 8e0c25362b7f9d1b6260d34bd7fc501dd98cd133 | |
parent | 7ce8860b6b528f821bfa3a0ca3cc5277c4dc122c (diff) | |
download | micropython-b4c65c253fbd8d020df45ae585c9d1b97ef361a6.tar.gz micropython-b4c65c253fbd8d020df45ae585c9d1b97ef361a6.zip |
extmod/fsusermount: Move module qstrs to global pool from stmhal port.
-rw-r--r-- | py/qstrdefs.h | 11 | ||||
-rw-r--r-- | stmhal/qstrdefsport.h | 9 |
2 files changed, 11 insertions, 9 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index 4df444d5f3..8a751fcc04 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -653,3 +653,14 @@ Q(slip) Q(status) #endif #endif + +#if MICROPY_FSUSERMOUNT +// for user-mountable block devices +Q(mount) +Q(readonly) +Q(mkfs) +Q(readblocks) +Q(writeblocks) +Q(sync) +Q(count) +#endif diff --git a/stmhal/qstrdefsport.h b/stmhal/qstrdefsport.h index 0c0b40773c..7644e9aef8 100644 --- a/stmhal/qstrdefsport.h +++ b/stmhal/qstrdefsport.h @@ -77,15 +77,6 @@ Q(micros) Q(elapsed_millis) Q(elapsed_micros) -// for user-mountable block devices -Q(mount) -Q(readonly) -Q(mkfs) -Q(readblocks) -Q(writeblocks) -Q(sync) -Q(count) - // for module weak links Q(binascii) Q(re) |