I get the error Identifier ""os_random"" not defined in my current project:
void setup() {
// for random generator
randomSeed(os_random());
After 2+ hours of searching for a solution I couldn't find one. The code compiles fine, only IntelliSense makes trouble.
I had the same issue with "Serial" but I solved that by writing a definition in my c_cpp_properties.json.
I get the error
Identifier ""os_random"" not defined
in my current project:After 2+ hours of searching for a solution I couldn't find one. The code compiles fine, only IntelliSense makes trouble. I had the same issue with "Serial" but I solved that by writing a definition in my c_cpp_properties.json.
It looks like this:
It's a bit messy, as I tried fixing multiple things.
BTW I should note that this is not my code, but rather the repo eps8266_deauther by spacehuhn.
Thanks in advance.