I can't build the TTGO-T-Display board. #328
Unanswered
RedSalsicha
asked this question in
Q&A
Replies: 2 comments 2 replies
-
I have reported similar issue: #299 |
Beta Was this translation helpful? Give feedback.
0 replies
-
I have tried to search for that file on GitHub and it is even more strange: only one location, really? https://github.com/search?q=repo%3ABitMaker-hub%2FNerdMiner_v2+sdkconfig.h&type=code |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I can't build with the TTGO-T-Display board.
PlatformIO Build generates these errors that appear to be missing the "sdkconfig.h" file in the Platformio folders, but when searching online for alternative solutions, what I found didn't work.
Processing TTGO-T-Display (platform: espressif32; board: esp32dev; framework: arduino)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------Verbose mode can be enabled via
-v, --verbose
optionCONFIGURATION: https://docs.platformio.org/page/boards/espressif32/esp32dev.html
PLATFORM: Espressif 32 (6.5.0) > Espressif ESP32 Dev Module
HARDWARE: ESP32 240MHz, 320KB RAM, 4MB Flash
DEBUG: Current (cmsis-dap) External (cmsis-dap, esp-bridge, esp-prog, iot-bus-jtag, jlink, minimodule, olimex-arm-usb-ocd, olimex-arm-usb-ocd-h, olimex-arm-usb-tiny-h, olimex-jtag-tiny, tumpa)
PACKAGES:
LDF: Library Dependency Finder -> https://bit.ly/configure-pio-ldf
LDF Modes: Finder ~ chain, Compatibility ~ soft
Found 42 compatible libraries
Scanning dependencies...
Dependency Graph
|-- OpenFontRender @ 1.1.0+sha.f163cc6
|-- ArduinoJson @ 6.21.5
|-- WiFiManager @ 2.0.16-rc.2+sha.88c378f
|-- OneButton @ 2.5.0
|-- NTPClient @ 3.2.1
|-- WebServer @ 2.0.0
|-- WiFi @ 2.0.0
|-- rm67162
|-- TFT_eSPI @ 2.5.23
|-- SPI @ 2.0.0
|-- FS @ 2.0.0
|-- SD @ 2.0.0
|-- SD_MMC @ 2.0.0
|-- SPIFFS @ 2.0.0
|-- HTTPClient @ 2.0.0
Building in release mode
Compiling .pio\build\TTGO-T-Display\src\NerdMinerV2.ino.cpp.o
Compiling .pio\build\TTGO-T-Display\src\ShaTests\nerdSHA256.cpp.o
Compiling .pio\build\TTGO-T-Display\src\ShaTests\nerdSHA256plus.cpp.o
In file included from c:\users\win10.platformio\packages\toolchain-xtensa-esp32\xtensa-esp32-elf\sys-include\sys\reent.h:503,
from C:/Users/Win10/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/include/newlib/platform_include/sys/reent.h:17,
from c:\users\win10.platformio\packages\toolchain-xtensa-esp32\xtensa-esp32-elf\sys-include\stdio.h:60,
Compiling .pio\build\TTGO-T-Display\src\drivers\displays\amoledDisplayDriver.cpp.o
from src/ShaTests/nerdSHA256plus.cpp:16:
C:/Users/Win10/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/include/newlib/platform_include/assert.h:20:10: fatal error: sdkconfig.h: No such file or directory
#include <sdkconfig.h>
^~~~~~~~~~~~~
compilation terminated.
In file included from c:\users\win10.platformio\packages\toolchain-xtensa-esp32\xtensa-esp32-elf\sys-include\sys\reent.h:503,
from C:/Users/Win10/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/include/newlib/platform_include/sys/reent.h:17,
from c:\users\win10.platformio\packages\toolchain-xtensa-esp32\xtensa-esp32-elf\sys-include\stdio.h:60,
from src/ShaTests/nerdSHA256.cpp:2:
C:/Users/Win10/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/include/newlib/platform_include/assert.h:20:10: fatal error: sdkconfig.h: No such file or directory
#include <sdkconfig.h>
^~~~~~~~~~~~~
compilation terminated.
In file included from c:\users\win10.platformio\packages\toolchain-xtensa-esp32\xtensa-esp32-elf\sys-include\sys\reent.h:503,
from C:/Users/Win10/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/include/newlib/platform_include/sys/reent.h:17,
from c:\users\win10.platformio\packages\toolchain-xtensa-esp32\xtensa-esp32-elf\sys-include\stdio.h:60,
from C:/Users/Win10/.platformio/packages/framework-arduinoespressif32/cores/esp32/Arduino.h:27,
from src/NerdMinerV2.ino.cpp:3:
C:/Users/Win10/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/include/newlib/platform_include/assert.h:20:10: fatal error: sdkconfig.h: No such file or directory
#include <sdkconfig.h>
^~~~~~~~~~~~~
compilation terminated.
*** [.pio\build\TTGO-T-Display\src\ShaTests\nerdSHA256plus.cpp.o] Error 1
*** [.pio\build\TTGO-T-Display\src\ShaTests\nerdSHA256.cpp.o] Error 1
*** [.pio\build\TTGO-T-Display\src\NerdMinerV2.ino.cpp.o] Error 1
============================================================================ [FAILED] Took 15.50 seconds ============================================================================
Environment Status Duration
TTGO-T-Display FAILED 00:00:15.496
======================================================================= 1 failed, 0 succeeded in 00:00:15.496 =======================================================================
`
Beta Was this translation helpful? Give feedback.
All reactions