Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upArduino Zero (SAM) SerialUSB.print(-2147483648); #86
Comments
SAMD actually. The type of -2147483648 is |
Printing at the Arduino Zero (SAM) gives an error with:
SerialUSB.print(-2147483648);
Error message:
exit status 1
call of overloaded 'print(long long int)' is ambiguous
This goes well:
int s = -2147483648;
SerialUSB << s << endl;