diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2018-04-10 10:26:07 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-10 10:26:07 -0700 |
| commit | f02cbeabab3091c70a9d40b6a9f9bea3516b2eec (patch) | |
| tree | 654a7b6ed069c52d598bcfadcde82db0e9f5d67c /shared-bindings/storage/__init__.h | |
| parent | a0cd94c18470a30299fdd0456ef639788fe12810 (diff) | |
| parent | eaa9923a8fc2eee6648bf6f839a88ae1e0e72a7f (diff) | |
Merge pull request #747 from dhalbert/reformat3.0.0-alpha.4
add storage.erase_filesystem() to erase and reformat CIRCUITPY
Diffstat (limited to 'shared-bindings/storage/__init__.h')
| -rw-r--r-- | shared-bindings/storage/__init__.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared-bindings/storage/__init__.h b/shared-bindings/storage/__init__.h index 76b9ae854..6a0cb9fc7 100644 --- a/shared-bindings/storage/__init__.h +++ b/shared-bindings/storage/__init__.h @@ -35,5 +35,6 @@ void common_hal_storage_umount_path(const char* path); void common_hal_storage_umount_object(mp_obj_t vfs_obj); void common_hal_storage_remount(const char* path, bool readonly); mp_obj_t common_hal_storage_getmount(const char* path); +void common_hal_storage_erase_filesystem(void); #endif // MICROPY_INCLUDED_SHARED_BINDINGS_STORAGE___INIT___H |
