Compare commits

..

4 Commits

Author SHA1 Message Date
SybexXx
4a76bc3eb3 Update platformio.ini 2025-06-11 05:45:35 +02:00
SybexXx
51416b1358 Update Helper.cpp 2025-06-11 05:45:04 +02:00
Bruns8234
c320e4c921 Update SDCard Manufacturer List (#3730)
Update 1 and added 5 entries
2025-05-05 23:55:10 +02:00
CaCO3
43b29f3408 clarify the parameter prefix (#3717)
Co-authored-by: CaCO3 <caco@ruinelli.ch>
2025-04-23 00:01:37 +02:00
2 changed files with 37 additions and 2 deletions

View File

@@ -31,7 +31,12 @@ extern "C"
#include "ClassLogFile.h"
#include "esp_vfs_fat.h"
#if (ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 4, 0))
#include "esp_private/sdmmc_common.h"
#else
#include "../sdmmc_common.h"
#endif
static const char *TAG = "HELPER";
@@ -806,11 +811,21 @@ struct SDCard_Manufacturer_database sd_database[] = {
.id = 0x03,
.manufacturer = "SanDisk",
},
{
.type = "sd",
.id = 0x05,
.manufacturer = "Lenovo",
},
{
.type = "sd",
.id = 0x08,
.manufacturer = "Silicon Power",
},
{
.type = "sd",
.id = 0x09,
.manufacturer = "ATP",
},
{
.type = "sd",
.id = 0x18,
@@ -894,7 +909,27 @@ struct SDCard_Manufacturer_database sd_database[] = {
{
.type = "sd",
.id = 0x89,
.manufacturer = "Unknown",
.manufacturer = "Netac",
},
{
.type = "sd",
.id = 0x9f,
.manufacturer = "Kingston/Kodak/Silicon Power",
},
{
.type = "sd",
.id = 0xad,
.manufacturer = "Amazon Basics/Lexar/OV",
},
{
.type = "sd",
.id = 0xdf,
.manufacturer = "Lenovo",
},
{
.type = "sd",
.id = 0xfe,
.manufacturer = "Bekit/Cloudisk/HP/Reletech",
},
};

View File

@@ -20,7 +20,7 @@
[common:esp32-idf]
extends = common:idf
; PlatformIO releases, see https://github.com/platformio/platform-espressif32/releases
platform = platformio/espressif32 @ 6.9.0
platform = platformio/espressif32 @ 6.11.0
framework = espidf
lib_deps =
${common:idf.lib_deps}