- 08 Mar, 2021 1 commit
-
-
Cristian Maglie authored
Since https://github.com/marcinbor85/gohex/pull/2 has been merged there is no more reason to keep the fork.
-
- 05 Mar, 2021 1 commit
-
-
Cristian Maglie authored
Serial discovery: now support MacOS 10.11+; improved USB serial number detection on Windows
-
- 04 Mar, 2021 2 commits
-
-
Silvano Cerza authored
-
Silvano Cerza authored
* Add board's platform to board listall json output * Add fuzzy search to board listall command
-
- 01 Mar, 2021 1 commit
-
-
per1234 authored
Since the time the documentation for the initial experimental debugging configuration system was added to the Arduino Platform Specification, the system has changed significantly, resulting in some of the documentation no longer being applicable to the current version of Arduino CLI. This only removes the outdated information, leaving the parts that are still correct. The new debug system will be fully documented at a later time.
-
- 26 Feb, 2021 3 commits
-
-
per1234 authored
The introductory sentence of the documentation homepage is the first thing the user may see when discovering Arduino CLI. For this reason, it's important for it to quickly and clearly convey what Arduino CLI is. Toward that goal, the following changes are made: - Use more understandable terms - Rearrange features list in the order of typical usage (install dependencies, compile, upload)
-
per1234 authored
The previous mention of spaces as one of the characters allowed in library and sketch folder names was a copy/paste error originating in the allowed characters in library.properties `name` properties. This specific part of the `name` property specification doesn't apply to folder names. The reason it is allowed in the `name` property is because that value is "sanitized" before being used by Library Manager for the library installation folder name by replacing all spaces with underscores.
-
per1234 authored
When a boards platform uses an outdated `recipe.ar.pattern`, Arduino CLI displays a helpful message: Unable to cache built core, please tell foo:bar@1.2.3 maintainers to follow http://goo.gl/QdCUjo That short link points to the old Arduino Platform Specification page in the arduino/Arduino repository's wiki. The platform specification has since been moved to the arduino/arduino-cli repository. Even though the old page provides a link to the new location, this message uses an anchor to direct the developer to the relevant section of the specification. When they follow the link from the old page, they will simply end up at the top of the specification and may have a hard time finding the information that tells them how to fix the platform. Updating the link restores the intended behavior.
-
- 25 Feb, 2021 2 commits
-
-
per1234 authored
When the compiled size of a sketch exceeds the available flash or RAM on the board, the error message includes a link to a troubleshooting guide: Sketch uses 16110 bytes (112%) of program storage space. Maximum is 14336 bytes. Global variables use 685 bytes (66%) of dynamic memory, leaving 339 bytes for local variables. Maximum is 1024 bytes. Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing it. http://www.arduino.cc/en/Guide/Troubleshooting was recently replaced with the Arduino Help Center. Even though that URL redirects to the Help Center, it only goes to the home page, leaving the user to hunt for the relevant article.
-
Silvano Cerza authored
* Change lib search command to use fuzzy search * Change core search command to use fuzzy search * Avoid splitting search arguments when doing fuzzy search * Check ranking when running fuzzy search * Some other enhancements to fuzzy search * Fix duplicated results in lib search command
-
- 24 Feb, 2021 1 commit
-
-
Silvano Cerza authored
-
- 23 Feb, 2021 2 commits
-
-
Cristian Maglie authored
-
Gerald Pape authored
* Make archive validation error messages friendlier * change behaviour a little + fix tests
-
- 18 Feb, 2021 1 commit
-
-
Silvano Cerza authored
* librariesindex: Fix nil pointer. Refs #1176 Let the library index return the latest known version, if a library without a version is found. Signed-off-by: Ruben Jenster <r.jenster@drachenfels.de> * Remove logging statement from FindLibraryUpdate. Signed-off-by: Ruben Jenster <r.jenster@drachenfels.de> * Add a small comment to the lib.Version nil check. Signed-off-by: Ruben Jenster <r.jenster@drachenfels.de> * Fix some commands failing when an installed library has invalid version * [skip changelog] Add integration tests Co-authored-by: Ruben Jenster <r.jenster@drachenfels.de>
-
- 16 Feb, 2021 1 commit
-
-
Cristian Maglie authored
* Added flag to disable check for sketch foldername This is required to keep backward compatibility for arduino-builder that doesn't enforce this check. * Added missing source doc * Changed module sketch_test -> sketch * Fixed test * Return the detected sketch as part of the error
-
- 12 Feb, 2021 3 commits
-
-
Silvano Cerza authored
-
Silvano Cerza authored
-
Silvano Cerza authored
Setting that flags return all installed and installable platforms, including installed manually by the user in their Sketchbook hardware folder.
-
- 11 Feb, 2021 6 commits
-
-
Cristian Maglie authored
-
Cristian Maglie authored
* Do not try to export binaries if --only-compilation-database is set otherwise an empty "build/fqbn/..." folder is created if "always-export-binaries" option is set via config file. * slightly simplify function call * [skip changelog] Add integration test Co-authored-by: Silvano Cerza <silvanocerza@gmail.com>
-
Silvano Cerza authored
* [skip changelog] Fix platform loading legacy tests * [skip changelog] Moved local.txt files used for testing
-
Silvano Cerza authored
-
Silvano Cerza authored
-
Silvano Cerza authored
-
- 09 Feb, 2021 1 commit
-
-
Silvano Cerza authored
* Fix loading of sketches with folder and main file mismatched casing * [skip changelog] Fix legacy tests
-
- 05 Feb, 2021 1 commit
-
-
Silvano Cerza authored
-
- 04 Feb, 2021 1 commit
-
-
Silvano Cerza authored
-
- 02 Feb, 2021 2 commits
-
-
Silvano Cerza authored
* Fix gRPC interface function to merge configs This fix adds the possibility to set empty values with the Merge gRPC function, previously they would have been ignored. Because of this change I had also to modify the GetValue() function since it would first check if the value was set using the Viper.InConfig() function that wouldn't check for values set with Viper.Set(). * [skip changelog] Add clearer example to client_example * [skip changelog] Simplified some code and enhance a test
-
Silvano Cerza authored
-
- 01 Feb, 2021 1 commit
-
-
Silvano Cerza authored
The current release process uses git to get the tag at the current commit. It might happen that are are multiple tags when calling that command, in cases the rc and the final release are done on the same commit, that would make the build process to fail. This fixes that issue by taking only one tag.
-
- 29 Jan, 2021 5 commits
-
-
Silvano Cerza authored
-
Silvano Cerza authored
* Compile command now works with sketches containing .pde files * Upload command now works with sketches and builds from .pde files * Archive command now works with sketches containing .pde files * [skip changelog] Add test to verify debug command works with pde sketches * Fix lib examples not showing sketches with .pde files * [skip changelog] Remove duplicated code and enhance tests
-
Silvano Cerza authored
-
Cristian Maglie authored
* Always report buildpath (even in case of build failed) * Always write a correct compilation database Even if the Contents field is empty.
-
Silvano Cerza authored
-
- 26 Jan, 2021 1 commit
-
-
Martino Facchin authored
* Skip dependency detection if library is fully precompiled Precompiled bits of a library should not depend on any link time dependency (we cannot assure ABI stability). Fixes https://github.com/arduino/ArduinoCore-mbed/issues/119 * Add output when skipping deps detection for precompiled libs Co-authored-by: Silvano Cerza <silvanocerza@gmail.com>
-
- 22 Jan, 2021 3 commits
-
-
Silvano Cerza authored
* [skip changelog] Ditch goreleaser in favor of a new release process * [skip changelog] Fix version output test * [skip changelog] Fix some workflows issues * [skip changelog] Fix panic when running integration tests * [skip changelog] Remove extra chars from package name prefix
-
Silvano Cerza authored
* Fix lib list --all not returning library includes in json output * [skip changelog] Enhance integration test
-
Silvano Cerza authored
-
- 20 Jan, 2021 1 commit
-
-
Silvano Cerza authored
* Add gRPC interface function to write settings to file * Add example of gRPC config write
-