<div dir="ltr"><div>I was looking at adding the maximum host speed as well as the sdcard speed to the SD Card information.  My question is whether the 'max speed' is apples-for-apples comparable with the card frequency or whether they are not quite the same thing?</div><div><br></div><div>//.</div><div><br></div>if (verbosity > COMMAND_RESULT_MINIMAL)<br>     {<br>     writer->printf("\nCard type: %s\n", (card->ocr & SD_OCR_SDHC_CAP)?"SDHC/SDXC":"SDSC");<br>-    writer->printf("Max speed: %d kHz\n", card->csd.tr_speed/1000);<br>+    int maxspeed = card->csd.tr_speed/1000;<br>+    writer->printf("Max speed: %d kHz\n", maxspeed);<br>+    int maxfreq = MyPeripherals->m_sdcard->m_host.max_freq_khz;<br>+    if (maxspeed > maxfreq)<br>+      writer->printf("Max host speed: %d kHz\n", maxfreq);<br>     writer->printf("Capacity: %llu MB\n", ((uint64_t) card->csd.capacity) * card->csd.sector_size / (1024 * 1024));<br>     writer->printf("CSD: ver=%d, sector_size=%d, capacity=%d read_bl_len=%d\n",<br>                     card->csd.csd_ver,<br></div>