teemuatlut / TMCStepper

MIT License
503 stars 198 forks source link

Build Issues with Branch Release_v1 on ESP32 and PlatformIO #249

Open KettererPatrick opened 2 years ago

KettererPatrick commented 2 years ago

I've been using PlatformIO with platform = espressif32@3.0.0 specified in the paltform.ini file. All built fine with this version. I want to upgrade to the newest platform version by using platform = espressif32. However, as soon as I do this, I get the following build errors (bunch of functions not defined in this scope errors).

Any ideas on how to fix this?

CONFIGURATION: https://docs.platformio.org/page/boards/espressif32/featheresp32.html PLATFORM: Espressif 32 (5.1.0) > Adafruit ESP32 Feather 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:


Here is the full content of my platform.ini file:

[env:tinypico] platform = espressif32 board = featheresp32 framework = arduino

lib_deps = https://github.com/teemuatlut/TMCStepper.git#Release_v1


main.cpp is pretty much empty, see below:

include

void setup() { // put your setup code here, to run once: }

void loop() { // put your main code here, to run repeatedly: }

pitchbent commented 1 year ago

Hi there, I am running into the same issue. Any news on this?

All the best