cc3200: Fix 'MP_QSTR_sd' undeclared error when building for the LAUNCHXL.

modussl
Daniel Campora 2015-06-02 12:58:37 +02:00
parent 32ce72cb9e
commit 2ffb6e1b15
1 changed files with 2 additions and 0 deletions

View File

@ -150,9 +150,11 @@ STATIC mp_obj_t os_listdir(mp_uint_t n_args, const mp_obj_t *args) {
if (path[0] == '/' && path[1] == '\0') {
mp_obj_t dir_list = mp_obj_new_list(0, NULL);
mp_obj_list_append(dir_list, MP_OBJ_NEW_QSTR(MP_QSTR_flash));
#if MICROPY_HW_HAS_SDCARD
if (sd_in_root()) {
mp_obj_list_append(dir_list, MP_OBJ_NEW_QSTR(MP_QSTR_sd));
}
#endif
return dir_list;
}