Replies: 7 comments 18 replies
-
|
I'm not sure if I need to post this here, or in https://github.com/pioarduino/platform-espressif32 |
Beta Was this translation helpful? Give feedback.
-
|
FYI, I have opened an issue on the pioarduino git. |
Beta Was this translation helpful? Give feedback.
-
|
@qniens @mathieucarbou The linker error should be gone. It does work for "normal" compile with precompiled Arduino Libs. Honestly currently i dont understand what is the reason failing with HybridCompile since there is the sdkconfig used stored in Arduino framework. Only the sdkconfig which is set in |
Beta Was this translation helpful? Give feedback.
-
|
@mathieucarbou I’d like to use hybrid mode to improve Ethernet performance, particularly for UDP. |
Beta Was this translation helpful? Give feedback.
-
|
Fixed. Platform rereleased. Delete |
Beta Was this translation helpful? Give feedback.
-
|
Once again, thank you all for the quick support, much appreciated. |
Beta Was this translation helpful? Give feedback.
-
|
Boa tarde pessoal, não sei se estou no lugar certo, mas preciso de uma ajuda com um codigo para um trabalho de faculdade. estou tendo erro nas linhas 106, 111 e 117 desse codigo: //This example demonstrates the ESP RainMaker with a custom device (Pet Feeder) // --- Configurações do Hardware e Variáveis Globais --- const char *service_name = "PetFeederProv"; // Nome para o provisionamento BLE/SoftAP // GPIO para o botão de reset (mantenha como no original) // Objetos RainMaker e Stepper // Variáveis de estado // --- Função de Alimentação do Pet --- } // WARNING: sysProvEvent is called from a separate FreeRTOS task (thread)! // --- Callback do ESP RainMaker (tratamento de comandos do App) --- if (strcmp(param_name, "Feed Now") == 0) { void setup() { Node my_node; // Criar o dispositivo "Pet Feeder" (Tipo customizado ou genérico) my_feeder_device->addNameParam(); // Parâmetro "Feed Now" (Botão - Bool, momentâneo) // Parâmetro "Speed" (Slider - Int, 5-30 RPM) // Parâmetro "Amount" (Slider/Input - Float, gramas) // Adicionar dispositivo personalizado ao nó // Habilitar TimeZone Service e Agendamento para uso via App RMaker.start(); WiFi.onEvent(sysProvEvent); void loop() { delay(100); |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Platform
ESP32
IDE / Tooling
pioarduino
What happened?
Project will not compile with version 55.03.34 in combination with custom_sdkconfig in platformio.ini
It doesn't matter which settings are set. When in Hybrid mode it will give the following linking error.
Deleting the .platformio folder and reinstalling all tools doesn't make a difference.
Stack Trace
Minimal Reproductible Example (MRE)
[main.cpp]
platformio.ini
I confirm that:
Beta Was this translation helpful? Give feedback.
All reactions