Freezing at boot #2322
-
Hi there, I'm trying to port the H4Plugins system into RP2040, however, it went successfully for most of the stack, including H4AsyncTCP and H4AsyncMQTT, but not for the H4Plugins, which have some issues in running constructors. The behavior goes the Serial device not shown up after flashing, should be something related to an exception/error in running constructors. At constructors, I've noticed two sources of issues: platform-specific, and general C++ code.
This MCVE confirms that, as any invokation of one of the two commands result in the failure: #include <Arduino>
#include <WiFi.h>
struct S{
S() {
Serial.begin(115200);
Serial.println(WiFi.macAddress());
Serial.printf("%d\n", digitalRead(D12));
}
} s;
void setup() {}
void loop() {}
This is less understandable, the same code runs perfectly for ESP32 and ESP8266, but fails for the RP2040, my guess goes towards some compilation flags... This is the line which fails. Having some analysis, it's calling the array index operator [] of the map where it does not find the element(as it appears). So had this one working by changing direct index operator into two cases as the following: auto p = make_pair(svc,f);
H4P_EVENT_LISTENERS value;
if (h4pevt.count(inst)) {
H4P_EVENT_LISTENERS& listeners = h4pevt.at(inst);
value = listeners; // take a copy
value.push_back(p);
} else value.push_back(p);
h4pevt.insert_or_assign(inst,value); Note that the data structure of std::map<uint32_t, std::vector<std::pair<std::string, std::function<...>> Any however, this freez applies for both Any comments/suggestions for this issue? With Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
You're using undefined C++ behavior with the global constructor, and things are going pear shaped. C++ does not specify which order global constructors are called. Your |
Beta Was this translation helpful? Give feedback.
You're using undefined C++ behavior with the global constructor, and things are going pear shaped. C++ does not specify which order global constructors are called. Your
struct s
is trying to useSerial
before it is created and well before USB is actually configured by themain()
routine. Move the constructor to a method and call that method fromsetup()
.