diff options
| author | Damien George | 2014-12-27 20:20:51 +0000 |
|---|---|---|
| committer | Damien George | 2014-12-27 20:20:51 +0000 |
| commit | 7690b13953162dcf398619bbfa6809d3d4e7dc67 (patch) | |
| tree | 3939a3ccf3ad0bb664282aa0e9c6077f50808826 /stmhal/fsusermount.h | |
| parent | e2745b307b9fd81d36847d75d40a53e597e5a125 (diff) | |
stmhal: Add ability to mount custom block device.
Diffstat (limited to 'stmhal/fsusermount.h')
| -rw-r--r-- | stmhal/fsusermount.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/stmhal/fsusermount.h b/stmhal/fsusermount.h new file mode 100644 index 000000000..5a983464e --- /dev/null +++ b/stmhal/fsusermount.h @@ -0,0 +1,39 @@ +/* + * This file is part of the Micro Python project, http://micropython.org/ + * + * The MIT License (MIT) + * + * Copyright (c) 2014 Damien P. George + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +typedef struct _fs_user_mount_t { + const char *str; + mp_uint_t len; + mp_obj_t readblocks[4]; + mp_obj_t writeblocks[4]; + mp_obj_t sync[2]; + mp_obj_t count[2]; + FATFS fatfs; +} fs_user_mount_t; + +extern fs_user_mount_t *fs_user_mount; + +MP_DECLARE_CONST_FUN_OBJ(pyb_mount_obj); |
