Skip to content

Commit d9ee0a6

Browse files
committed
Fixed bug preventing SDCard to be configured for 1-line SD mode
1 parent a09f392 commit d9ee0a6

20 files changed

+5
-5
lines changed

MicroPython_BUILD/components/micropython/esp32/mpversion.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
* THE SOFTWARE.
2525
*/
2626

27-
#define MICROPY_GIT_TAG "ESP32_LoBo_v3.2.3"
27+
#define MICROPY_GIT_TAG "ESP32_LoBo_v3.2.4"
2828
#define MICROPY_GIT_HASH "g139d4989"
29-
#define MICROPY_BUILD_DATE "2018-04-04"
29+
#define MICROPY_BUILD_DATE "2018-04-06"
3030
#define MICROPY_VERSION_MAJOR (3)
3131
#define MICROPY_VERSION_MINOR (2)
32-
#define MICROPY_VERSION_MICRO (3)
33-
#define MICROPY_VERSION_STRING "3.2.3"
32+
#define MICROPY_VERSION_MICRO (4)
33+
#define MICROPY_VERSION_STRING "3.2.4"
3434
#define MICROPY_CORE_VERSION "bcfff4f"
3535
#define MICROPY_CORE_DATE "2018-03-30"

MicroPython_BUILD/components/micropython/extmod/vfs_native.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ static void _sdcard_mount()
748748
else {
749749
sdmmc_host_t host = SDMMC_HOST_DEFAULT();
750750
sdmmc_slot_config_t slot_config = SDMMC_SLOT_CONFIG_DEFAULT();
751-
if (sdcard_config.mode == 1) {
751+
if (sdcard_config.mode == 2) {
752752
// Use 1-line SD mode
753753
gpio_set_pull_mode(2, GPIO_PULLUP_ONLY);
754754
gpio_set_pull_mode(14, GPIO_PULLUP_ONLY);
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)