diff options
Diffstat (limited to 'stmhal/mpconfigport.h')
-rw-r--r-- | stmhal/mpconfigport.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/stmhal/mpconfigport.h b/stmhal/mpconfigport.h index a6dba431f3..67efd091bf 100644 --- a/stmhal/mpconfigport.h +++ b/stmhal/mpconfigport.h @@ -166,6 +166,9 @@ extern const struct _mp_obj_module_t mp_module_network; /* pointers to all CAN objects (if they have been created) */ \ struct _pyb_can_obj_t *pyb_can_obj_all[2]; \ \ + /* for user-mountable block device */ \ + struct _fs_user_mount_t *fs_user_mount; \ + \ /* list of registered NICs */ \ mp_obj_list_t mod_network_nic_list; \ |