Merge pull request #7014 from jepler/restore-nvm-module

restore nvm module
This commit is contained in:
MicroDev 2022-10-08 00:12:41 +05:30 committed by GitHub
commit fc549fe345
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -11,3 +11,5 @@ CIRCUITPY_BUILD_EXTENSIONS = bin,uf2
INTERNAL_FLASH_FILESYSTEM = 1
LONGINT_IMPL = NONE
CIRCUITPY_FULL_BUILD = 0
CIRCUITPY_RAINBOWIO = 0

View File

@ -50,3 +50,5 @@ const mp_obj_module_t nvm_module = {
.base = { &mp_type_module },
.globals = (mp_obj_dict_t *)&nvm_module_globals,
};
MP_REGISTER_MODULE(MP_QSTR_nvm, nvm_module, CIRCUITPY_NVM);