You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* upstream/master: (239 commits)
Fix for issue arduino#292
Windows: build_pull_request needed to be upgraded as well
Update revisions.txt
Windows: JRE is chosen at build time via WINDOWS_BUNDLED_JVM property
Update Tone.cpp
Update revisions.txt
Block discovery threads until packages is not null, otherwise boards discovered during startup will miss model name
Also SerialDiscovery was affected by bug found at 40535df. Fixesarduino#2892
NetworkDiscovery was silently failing because packages werenìt ready yet. Fixesarduino#2837
Better preference for setting warnings level. See arduino@61592d7#commitcomment-10668365
SAM boards stop compiling due to way of handling params with spaces on different OSs. Fixed
Update Tone.cpp
Restored error messages. Got rid of MessageSyphon as ther were losing some error messages. Fixesarduino#2737
Windows: added listComPorts test case
New preference: enable all compiler warnings, off by default. Fixesarduino#1728 and arduino#2415. Also affects arduino#2634 and arduino#2207
build.xml: spreading failonerror on all exec tasks, it's better to crash early
Lib/Board Manager CRC check is now case insensitive. Fixesarduino#2953
License fix to audio library
License fix
Library Manager: better error message
...
It appears that the checksum calculator used by the Boards Manager, only works if the checksum in package_index.json is lower case
e.g. this works
"checksum": "SHA-256:2909a4c6dd6d7497e7e1b5fcaa2f66a100271417510f3a68593b65af8ff78c1c",
However this does not work
"checksum": "SHA-256:2909A4C6DD6D7497E7E1B5FCAA2F66A100271417510F3A68593B65AF8FF78C1C",
I suspect your internal CRC generator code generates a lower case string, and you are doing case sensitive compare.
It would be best if it was case insensitive, as often CRC generator programs create upper case checksums
The text was updated successfully, but these errors were encountered: