Skip to content

Commit

Permalink
Fixed bug preventing SDCard to be configured for 1-line SD mode
Browse files Browse the repository at this point in the history
  • Loading branch information
loboris committed Apr 5, 2018
1 parent a09f392 commit d9ee0a6
Show file tree
Hide file tree
Showing 20 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions MicroPython_BUILD/components/micropython/esp32/mpversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
* THE SOFTWARE.
*/

#define MICROPY_GIT_TAG "ESP32_LoBo_v3.2.3"
#define MICROPY_GIT_TAG "ESP32_LoBo_v3.2.4"
#define MICROPY_GIT_HASH "g139d4989"
#define MICROPY_BUILD_DATE "2018-04-04"
#define MICROPY_BUILD_DATE "2018-04-06"
#define MICROPY_VERSION_MAJOR (3)
#define MICROPY_VERSION_MINOR (2)
#define MICROPY_VERSION_MICRO (3)
#define MICROPY_VERSION_STRING "3.2.3"
#define MICROPY_VERSION_MICRO (4)
#define MICROPY_VERSION_STRING "3.2.4"
#define MICROPY_CORE_VERSION "bcfff4f"
#define MICROPY_CORE_DATE "2018-03-30"
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ static void _sdcard_mount()
else {
sdmmc_host_t host = SDMMC_HOST_DEFAULT();
sdmmc_slot_config_t slot_config = SDMMC_SLOT_CONFIG_DEFAULT();
if (sdcard_config.mode == 1) {
if (sdcard_config.mode == 2) {
// Use 1-line SD mode
gpio_set_pull_mode(2, GPIO_PULLUP_ONLY);
gpio_set_pull_mode(14, GPIO_PULLUP_ONLY);
Expand Down
Binary file modified MicroPython_BUILD/firmware/MicroPython_LoBo_esp32.zip
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/MicroPython_LoBo_esp32_all.zip
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/MicroPython_LoBo_esp32_ota.zip
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/MicroPython_LoBo_esp32_psram.zip
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/MicroPython_LoBo_esp32_psram_all.zip
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/MicroPython_LoBo_esp32_psram_ota.zip
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/esp32/MicroPython.bin
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/esp32/bootloader/bootloader.bin
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/esp32_all/MicroPython.bin
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/esp32_all/bootloader/bootloader.bin
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/esp32_ota/MicroPython.bin
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/esp32_ota/bootloader/bootloader.bin
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/esp32_psram/MicroPython.bin
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/esp32_psram/bootloader/bootloader.bin
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/esp32_psram_all/MicroPython.bin
Binary file not shown.
Binary file not shown.
Binary file modified MicroPython_BUILD/firmware/esp32_psram_ota/MicroPython.bin
Binary file not shown.
Binary file not shown.

0 comments on commit d9ee0a6

Please sign in to comment.