Hello,
I am curious why the following short snippet compiles for Uno but not for the Seeduino Xiao. The error is:
c:/users/bob/appdata/local/arduino15/packages/seeeduino/tools/arm-none-eabi-gcc/7-2017q4/bin/../lib/gcc/arm-none-eabi/7.2.1/../../../../arm-none-eabi/bin/ld.exe: warning: changing start of section .bss by 4 bytes
//*****************************************************
double total;
void setup() {
total = 1234.456;
}
void loop() {
double current;
current = sqrt(total);
}
//************************************************************
Using the latest ide 2.0.3
Thanks!