Board_build.partitions = partitions-16MB-tinyuf2.csv missing

I build a new Projekt an get that error
Windows VS Code PlattformIo
[env:adafruit_metro_esp32s3]
platform = espressif32
board = adafruit_metro_esp32s3
upload_port = COM20
framework = arduino

*** [.pio\build\adafruit_metro_esp32s3\partitions.bin] Source partitions-16MB-tinyuf2.csv' not found, needed by target .pio\build\adafruit_metro_esp32s3\partitions.bin’.
================================= [FAILED] Took 2.39 seconds ====

How could I fix that?`
or witch board could I use for a
APKLVSR ESP32-S3 Entwicklung Bord,ESP32 S3 WROOM-1-N16R8 Board.
could be find on Amazon. looks like a UNO

regards
Jörg

The adafruit_metro_esp32s3.json refers to a “partitions-16MB-tinyuf2.csv” but there is no file with this name in the partitions folder. But there is a file called tinyuf2-partitions-16MB.csv

For a quick fix this should help.
Add this line to your platformio.ini:
board_build.partitions = tinyuf2-partitions-16MB.csv

1 Like