- 27 Dec, 2021 1 commit
-
-
Umberto Baldi authored
Add drivers originally bundled with Java IDE directly in the core
-
- 22 Dec, 2021 1 commit
-
-
umbynos authored
-
- 17 Dec, 2021 1 commit
-
-
Umberto Baldi authored
-
- 16 Dec, 2021 2 commits
-
-
Umberto Baldi authored
modify post_install.bat according to https://github.com/arduino/ArduinoCore-megaavr/blob/master/post_install.bat
-
Umberto Baldi authored
initial import from https://github.com/arduino/Arduino/tree/master/build/windows/dist/drivers (moved also gemma stuff under `gemma/`)
-
- 01 Dec, 2021 1 commit
-
-
Silvano Cerza authored
Fix legacy `upload.network_pattern` rule
-
- 30 Nov, 2021 1 commit
-
-
Silvano Cerza authored
-
- 23 Nov, 2021 3 commits
-
-
Martino Facchin authored
-
Martino Facchin authored
-
Martino Facchin authored
Add support for pluggable discovery
-
- 17 Nov, 2021 1 commit
-
-
Martino Facchin authored
Speed up 'available' method by inserting unsigned int cast
-
- 18 Oct, 2021 1 commit
-
-
Bernhard Nebel authored
-
- 14 Oct, 2021 1 commit
-
-
Cristian Maglie authored
-
- 01 Oct, 2021 1 commit
-
-
Martino Facchin authored
Allow disabling CDC with -DCDC_DISABLED
-
- 08 Sep, 2021 1 commit
-
-
Silvano Cerza authored
Don't use codespell's "rare" dictionary for CI spell check
-
- 30 Jun, 2021 1 commit
-
-
per1234 authored
The word "statics" was recently added to codespell's "rare" commonly mispelled words directory. By default, this dictionary is used in addition to the more conservative "clear" dictionary, resulting in a spurious failure of the "Spell Check" CI workflow. Although this could be fixed by adding the word to the ignore list, it seems that an increasing number of common words being added to this dictionary, so I think it's best to just remove it altogether. The goal for the "Spell Check" workflow is to catch some typos without a significant number of false positives, even if that means some misspellings slip through. I think the "clear" dictionary is more in line with that goal.
-
- 26 May, 2021 9 commits
-
-
Martino Facchin authored
Use GitHub Actions for continuous integration
-
per1234 authored
On creation or commit to a pull request, a report of the resulting change in memory usage of the examples will be commented to the PR thread.
-
per1234 authored
On every push or pull request that affects platform source code or bundled libraries, compile example sketches of all bundled libraries for the platform's boards.
-
per1234 authored
On every push, pull request, and periodically, run Arduino Lint to check for common problems not related to the project code.
-
per1234 authored
-
per1234 authored
On every push, pull request, and periodically, use the codespell-project/actions-codespell action to check for commonly misspelled words. In the event of a false positive, the problematic word should be added, in all lowercase, to the ignore-words-list field of ./.codespellrc. Regardless of the case of the word in the false positive, it must be in all lowercase in the ignore list. The ignore list is comma-separated with no spaces.
-
Alexander Entinger authored
-
per1234 authored
Dependabot will periodically check the versions of all actions used in the repository's workflows. If any are found to be outdated, it will submit a pull request to update them. NOTE: Dependabot's PRs will sometimes try to pin to the patch version of the action (e.g., updating `uses: foo/bar@v1` to `uses: foo/bar@v2.3.4`). When the action author has provided a major version ref, use that instead (e.g., `uses: foo/bar@v2`). Dependabot will automatically close its PR once the workflow has been updated. More information: https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-dependabot
-
per1234 authored
-
- 25 May, 2021 1 commit
-
-
Alexander Entinger authored
Declare TwoWire functions as virtual
-
- 25 Feb, 2021 1 commit
-
-
ArkadyGamza authored
To make alternative implementations of the TwoWire class (e.g. SoftwareWire for software I2C) work properly being passed to libraries that expect TwoWire type.
-
- 12 Jan, 2021 1 commit
-
-
Martino Facchin authored
fix twi_manageTimeoutFlag function description
-
- 09 Jan, 2021 1 commit
-
-
Greyson Christoforo authored
-
- 06 Jan, 2021 1 commit
-
-
Daniel Gibson authored
Sometimes Arduino-based USB devices don't work because some hardware (like KVM switches) gets confused by the CDC sub-devices. This change makes it relatively easy to disable CDC at compiletime. Disabling it of course means that the serial console won't work anymore, so you need to use the reset button when flashing. CDC_DISABLED is also used in ArduinoCore-samd for the same purpose. based on https://github.com/gdsports/usb-metamorph/tree/master/USBSerPassThruLine See also https://github.com/NicoHood/HID/issues/225 and https://github.com/arduino/Arduino/issues/6387 and https://forum.arduino.cc/index.php?topic=545288.msg3717028#msg3717028
-
- 02 Nov, 2020 3 commits
-
-
Martino Facchin authored
Update platform specification URLs in configuration files
-
per1234 authored
The Google Code URL in boards.txt is very outdated. The URL in platform.txt is to a more recent home of the content, which has been replaced with a link to the new location, but while I'm updating boards.txt, I might as well point both URLs to the real page.
-
Martino Facchin authored
Improve reading ADC result
-
- 01 Nov, 2020 1 commit
-
-
Vitaly Shmagun authored
7.3.0-atmel3.6.1-arduino7 gcc fails to optimize separate reading from ADCL and ADCH. It produces additionally three eor commands or in some cases two mov commands in the assembly code (see discussion #344). These commands swap register contents before store them to data area. So they are completely unnecessary. Reading ADC result with ADC macro fixes it and gcc generates the right code..
-
- 15 Oct, 2020 1 commit
-
-
Martino Facchin authored
Improve and complete implementation of new/delete
-
- 17 Sep, 2020 5 commits
-
-
Matthijs Kooijman authored
The standard dictates that `std::size_t` is used, rather than the plain `size_t` type. Even though these types are usually, if not always, exactly the same type, other code might assume that `std::size_t` is actually used and thus also available under that name after including `<new>`. This fixes that by using the right type. One challenge is that it is usually declared in headers that we do not have available, so this just defines the `std::size_t` type in the `<new>` header to work around that.
-
Matthijs Kooijman authored
This is currently disabled, keeping the old behavior of returning NULL on failure, but should probably be enabled in the future as code that does want to do a null check has had a chance to switch to the more portable nothrow versions. When enabled, allocation failure calls the weak `std::terminate()`, which calls `abort()` by default, but can be replaced by user code to do more specific handling. To enable this, a macro must be defined (in new.cpp or on the compiler commandline). This fixes part of #287.
-
Matthijs Kooijman authored
This fixes part of #287.
-
Matthijs Kooijman authored
These are special functions that are presumably put into vtables for deleted or pure virtual functions. Previously, this would call `abort()` directly, but calling `std::terminate()` achieves the same effect, but allows user code to change the behavior (e.g. to print to serial, blink leds or whatever makes sense).
-
Matthijs Kooijman authored
This allows calling it from other places later. The default implementation calls `abort()`, but making it weak allows user code to override this function (either directly, or by including a library like uclibc++ that implements `std::set_terminate()`). Note that this does not add a declaration for this function, since the standard dictates this to be in `<exception>`, but we cannot meaningfully or completely implement that header, so better leave it to be overridden by e.g. libraries like uclibc++.
-