Open maxgerhardt opened 4 years ago
GCC is throwing errors in your code regarding warning: no return statement in function returning non-void errors.
warning: no return statement in function returning non-void
E.g., where is the return statement in this function that's supposed return a signed short?
return
signed short
https://github.com/w600/arduino/blob/b94d129f6d873c3d314ffbe230a236b578a1d186/cores/w600/HardwareSerial.cpp#L45-L57
Same here
https://github.com/w600/arduino/blob/b94d129f6d873c3d314ffbe230a236b578a1d186/cores/w600/HardwareSerial.cpp#L148-L175
What's going on here? Is this project completely abandoned?
GCC is throwing errors in your code regarding
warning: no return statement in function returning non-void
errors.E.g., where is the
return
statement in this function that's supposed return asigned short
?https://github.com/w600/arduino/blob/b94d129f6d873c3d314ffbe230a236b578a1d186/cores/w600/HardwareSerial.cpp#L45-L57
Same here
https://github.com/w600/arduino/blob/b94d129f6d873c3d314ffbe230a236b578a1d186/cores/w600/HardwareSerial.cpp#L148-L175