Search found 2 matches

by pythagoras
Thu Mar 09, 2023 9:23 am
Forum: Hardware
Topic: ESP32 does not work with all micro sdcards
Replies: 2
Views: 2004

ESP32 does not work with all micro sdcards

I'm using idf.py v5.0.1 on an ESP32-Wroom-32E module connected to an micro sdcard via SPI. It usually works with most 32GB micro sd cards but I have a micro sdcard that it doesn't. The sd card is a SanDisk Ultra 32GB HCI class 10 A1. I was wondering if this card doesn't support spi or if it is just ...
by pythagoras
Mon Feb 27, 2023 2:01 pm
Forum: Report Bugs
Topic: localtime_r assert failure - is this a bug?
Replies: 0
Views: 1825

localtime_r assert failure - is this a bug?

I have the following code : struct tm td; //time_t timeval = aMission->timestampStarted; time_t timeval = aMission->timestampStarted + UTCTimeOffset; localtime_r(&timeval, &td); char timeStr[60]; snprintf(timeStr, 59, "%02d/%02d/%04d %2d:%02d", td.tm_mday, td.tm_mon+1, (td.tm_year+1900), td.tm_hour,...