Eclipse fails to resolve macros definitions - SOLVED
Posted: Sun Jan 10, 2021 2:27 pm
I'm trying to write a simple application to connect my ESP-01 to my home AP. For that, in the code I have defined two macros - my APs SSID and password as follows:
However Eclipse complains about my macro definitions - "Symbol 'Telia' could not be resolved". It seems like it's trying to find a value for this symbol instead of taking it as a string value.
How can I resolve this issue?
Code: Select all
#define EXAMPLE_ESP_MAXIMUM_RETRY 5
#define EXAMPLE_ESP_WIFI_SSID Telia-8D67F2
#define EXAMPLE_ESP_WIFI_PASS HUPKG3QHO*****
However Eclipse complains about my macro definitions - "Symbol 'Telia' could not be resolved". It seems like it's trying to find a value for this symbol instead of taking it as a string value.
How can I resolve this issue?