1. 24 Feb, 2023 1 commit
  2. 20 Feb, 2023 1 commit
  3. 02 Nov, 2022 2 commits
  4. 28 Oct, 2022 1 commit
  5. 18 Oct, 2022 3 commits
  6. 05 Sep, 2022 1 commit
    • per1234's avatar
      Fix spell check false positive by ignoring word (#497) · 2ff00ae7
      per1234 authored
      In the latest release of the codespell tool used for automated spell checking of the files of this project, the word "clen" was added to the codespell misspelled words dictionary as a misspelling of "clean".
      
      This caused a false detection of a struct member name `clen` as a misspelling, resulting in a failing spell check result. Since the occurrence of this name is correct and intended in this project, the false positive is resolved by configuring codespell to ignore the problematic word.
      2ff00ae7
  7. 17 Jul, 2022 1 commit
  8. 19 Apr, 2022 1 commit
  9. 11 Apr, 2022 1 commit
  10. 08 Apr, 2022 1 commit
  11. 01 Mar, 2022 2 commits
  12. 16 Feb, 2022 1 commit
  13. 10 Jan, 2022 1 commit
  14. 03 Jan, 2022 2 commits
    • per1234's avatar
      Use more logical Boards menu placement for Uno Mini · 5259cff7
      per1234 authored
      Arduino has added a new board to the AVR-based line: the Uno Mini. The Uno Mini has its own board definition in this
      platform, which produces a dedicated item in the **Tools > Board** menu of the Arduino IDE.
      
      The classic Arduino IDE arranges the Boards menu for each platform according to the order of occurrence of the board
      definition in the platform's boards.txt configuration file. The previous placement of the Uno Mini board definition
      resulted in the board appearing at the end of the menu, along with retired and 3rd party boards.
      
      The new placement will cause it to be shown alongside the related Arduino Uno and in a position befitting the latest
      official AVR board.
      5259cff7
    • per1234's avatar
      Merge pull request #448 from per1234/add-unomini-ci · 6690a38f
      per1234 authored
      Add unomini to sketch compilation CI workflow
      6690a38f
  15. 01 Jan, 2022 1 commit
    • per1234's avatar
      Add unomini to sketch compilation CI workflow · 8ef856f7
      per1234 authored
      The "Compile Examples" GitHub Actions workflow provides a basic "smoke test" for the platform by compiling the relevant example sketches for each of the boards on every commit and pull request.
      
      A new board has been added to the platform (Uno Mini) and so should be added to the list of boards compiled for in this workflow.
      
      Even though the Uno compilation does provide reasonable coverage for the Uno Mini due to their similar configurations, that coverage does not extend to the board definition itself.
      8ef856f7
  16. 27 Dec, 2021 1 commit
  17. 22 Dec, 2021 1 commit
  18. 17 Dec, 2021 1 commit
  19. 16 Dec, 2021 2 commits
  20. 01 Dec, 2021 1 commit
  21. 30 Nov, 2021 1 commit
  22. 23 Nov, 2021 3 commits
  23. 17 Nov, 2021 1 commit
  24. 18 Oct, 2021 1 commit
  25. 14 Oct, 2021 1 commit
  26. 01 Oct, 2021 1 commit
  27. 08 Sep, 2021 1 commit
  28. 30 Jun, 2021 1 commit
    • per1234's avatar
      Don't use codespell's "rare" dictionary for CI spell check · 4899e506
      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.
      4899e506
  29. 26 May, 2021 4 commits