We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68d3cf7 commit 9bba9b0Copy full SHA for 9bba9b0
ports/espressif/common-hal/sdioio/SDCard.c
@@ -63,7 +63,7 @@ void common_hal_sdioio_sdcard_construct(sdioio_sdcard_obj_t *self,
63
}
64
65
// max 40Mhz frequency
66
- mp_arg_validate_int_max(frequency,40000000,MP_QSTR_frequency);
+ mp_arg_validate_int_max(frequency, 40000000, MP_QSTR_frequency);
67
ESP_LOGI(TAG, "Using slot %d", sd_slot);
68
self->slot = (uint8_t)sd_slot;
69
esp_err_t err = ESP_OK;
@@ -123,7 +123,7 @@ void common_hal_sdioio_sdcard_construct(sdioio_sdcard_obj_t *self,
123
claim_pin(data[2]);
124
claim_pin(data[3]);
125
126
-
+
127
ESP_LOGI(TAG, "Initialized SD card with ID %d:%d-%s",
128
self->card.cid.mfg_id, self->card.cid.oem_id, self->card.cid.name);
129
0 commit comments