Different kind of symbol
Posted: Tue Mar 13, 2018 10:06 am
When I compile this code within the Arduino IDE . . . .
. . . . I get the warning message "float gamma redeclared as different kind of symbol".
I don't get the warning if I compile for a Leonardo.
Is "gamma" a reserved word for the ESP32 or Is this a bug?
Code: Select all
float gamma;
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}
I don't get the warning if I compile for a Leonardo.
Is "gamma" a reserved word for the ESP32 or Is this a bug?