Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Itsy M0, Hallowing: add A12 pin for PrettyPins generator #628

Open
wants to merge 977 commits into
base: master
Choose a base branch
from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Aug 26, 2019

  1. Merge pull request #171 from kaysievers/platform-usb-power

    platform: Add USB device MaxPower default setting
    ladyada authored Aug 26, 2019
    Configuration menu
    Copy the full SHA
    52ea598 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2019

  1. tinyusb: Allow to set the USB manufacturer/product identifiers

    Set the USB descriptor strings. I accepts UTF-8 strings with
    codepoints up to 16 bit.
    
      void setup() {
        USBDevice.setManufacturer("MyManufacturer");
        USBDevice.setProduct("MyProduct");
      }
    kaysievers committed Aug 27, 2019
    Configuration menu
    Copy the full SHA
    9417d79 View commit details
    Browse the repository at this point in the history
  2. tinyusb: Allow to replace the built-in descriptor buffer

    Huge USB configurations might need more than 256 bytes for the
    config descriptor buffer. MIDI devices with 16 virtual ports
    grow the descriptor to 600+ bytes.
    
    This call replaces the built-in buffer with the supllied buffer. The
    call copies the content of the old buffer to the new buffer:
    
      uint8_t buf[1024];
      USBDevice.setDescriptorBuffer(buf, sizeof(buf));
    kaysievers committed Aug 27, 2019
    Configuration menu
    Copy the full SHA
    dcd4e5b View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2019

  1. Configuration menu
    Copy the full SHA
    3591f28 View commit details
    Browse the repository at this point in the history
  2. Added Additonal Timers

    TC6_CH0, TC6_CH1, TC7_CH0, TC7_CH1 on SAMD21J
    TCC0_CH6, TCC0_CH7, TCC1_CH4, TCC1_CH5, TCC1_CH6, TCC1_CH7, TC6_CH0, TC6_CH1, TC7_CH0, TC7_CH1 on SAMD51J
    nekuneko authored Aug 28, 2019
    Configuration menu
    Copy the full SHA
    256bc5a View commit details
    Browse the repository at this point in the history
  3. Merge pull request #174 from nekuneko/patch-2

    Enable TC6 & TC7 for __SAMD21J18A__
    ladyada authored Aug 28, 2019
    Configuration menu
    Copy the full SHA
    29c27b6 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #175 from nekuneko/patch-3

    Added Additonal Timers
    ladyada authored Aug 28, 2019
    Configuration menu
    Copy the full SHA
    ef4072f View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2019

  1. Merge pull request #173 from kaysievers/tinyusb-descriptor-size

    tinyusb: Allow to replace the built-in descriptor buffer
    hathach authored Sep 1, 2019
    Configuration menu
    Copy the full SHA
    04eb7d1 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2019

  1. Merge pull request #172 from kaysievers/usb-names-override

    tinyusb: Allow to set the USB manufacturer/product identifiers
    hathach authored Sep 10, 2019
    Configuration menu
    Copy the full SHA
    c4f3490 View commit details
    Browse the repository at this point in the history
  2. added set/get LanguageDescriptor

    add Descriptor to setManufacturer/setProduct
    hathach committed Sep 10, 2019
    Configuration menu
    Copy the full SHA
    7c02454 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #177 from hathach/master

    follow up to pr #172
    hathach authored Sep 10, 2019
    Configuration menu
    Copy the full SHA
    f739f3c View commit details
    Browse the repository at this point in the history
  4. clean up

    hathach committed Sep 10, 2019
    Configuration menu
    Copy the full SHA
    e5b45ed View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2019

  1. tinyusb: MIDI - split descriptor initializer into individual sections

    This allows to compose the descriptor programmatically. The calling code
    can compose a MIDI descriptor with up to 16 virtual wires/jacks at
    initialization time.
    
    Tested with the tinyusb -> MIDI -> midi_test example. This commit should
    not change any behavior, future extensions of the calling MIDI device
    will make use of it.
    kaysievers committed Sep 11, 2019
    Configuration menu
    Copy the full SHA
    e5af75a View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2019

  1. Change references from A0 & A1 to DAC0 & DAC1

    New boards could have DAC0 & DAC1 on different pins. DAC0 & DAC1 pins are defined on each variant.h file, so it is not needed to reference to pins A0 & A1. With this change the code is more generic. Changes affect to analogWrite & analogRead functions.
    nekuneko authored Sep 19, 2019
    Configuration menu
    Copy the full SHA
    a09d821 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2019

  1. Merge pull request #180 from nekuneko/patch-1

    Change references from A0 & A1 to DAC0 & DAC1
    ladyada authored Sep 20, 2019
    Configuration menu
    Copy the full SHA
    918379d View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2019

  1. Merge pull request #179 from kaysievers/tinyusb-midi-jacks

    tinyusb: MIDI - split descriptor initializer into individual sections
    hathach authored Oct 4, 2019
    Configuration menu
    Copy the full SHA
    2cc8b49 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bb4b17b View commit details
    Browse the repository at this point in the history
  3. remove serial1

    ladyada committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    9a6ab51 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ec12be5 View commit details
    Browse the repository at this point in the history
  5. fix typo from contrib

    ladyada committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    4bcbaa7 View commit details
    Browse the repository at this point in the history
  6. add samd51-capable servo for now

    ladyada committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    e204bf3 View commit details
    Browse the repository at this point in the history
  7. change Tone on samd51 to be TC0 so we can use higher numbers for othe…

    …r stuff! (servo is TC1)
    ladyada committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    1e9a669 View commit details
    Browse the repository at this point in the history
  8. bump to add new boards, fix servo and tone

    ladyada committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    1efed72 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2019

  1. Configuration menu
    Copy the full SHA
    a6e9eb3 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2019

  1. allow PDM mic on SPI

    ladyada committed Oct 16, 2019
    Configuration menu
    Copy the full SHA
    6076e22 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2019

  1. Configuration menu
    Copy the full SHA
    ceccc25 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2019

  1. use arduino-api for min/max

    ladyada committed Oct 28, 2019
    Configuration menu
    Copy the full SHA
    841a1b8 View commit details
    Browse the repository at this point in the history
  2. fix min/max macros

    allow PDM mic on pybadge edge
    change pyportal backlight timer
    ladyada committed Oct 28, 2019
    Configuration menu
    Copy the full SHA
    ee9df54 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1ab7cb6 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2019

  1. Configuration menu
    Copy the full SHA
    c7c1748 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2019

  1. Configuration menu
    Copy the full SHA
    e72343c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4dbfc24 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3ed74de View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    efd2961 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    74cfc24 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0897920 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3202e77 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    84cef9a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    43e7bd8 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ccd2ef9 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    684811d View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    8368e5f View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    bc5fcc0 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    7a60a36 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    04a2dd8 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    2b052e1 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2019

  1. add monster m4sk too

    ladyada committed Nov 3, 2019
    Configuration menu
    Copy the full SHA
    feb846a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6be0d1f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9df0b07 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2019

  1. SAMD21: Fix freq clipping in SPI.h, allow 24 MHz SPI

    SPI clock freq previously clipped at MAX_SPI/2 (6 MHz) rather than MAX_SPI. Now works correctly.
    Additionally, MAX_SPI set at 24 MHz on SAMD21. This is only slightly beyond spec and so far seems reliable with SD and SdFat tests on M0 Adalogger, eyes on HalloWing M0.
    PaintYourDragon committed Nov 4, 2019
    Configuration menu
    Copy the full SHA
    a2c0a5b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #186 from adafruit/baud-fix

    SAMD21: Fix freq clipping in SPI.h, allow 24 MHz SPI
    ladyada authored Nov 4, 2019
    Configuration menu
    Copy the full SHA
    361481d View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2019

  1. tinyusb: Correct descriptor string length calculation

    This fixes strcpy_uni16() to return the correct number of characters.
    It wasn't visible in the host so far, because the strings have been NUL
    terminated.
    kaysievers committed Nov 19, 2019
    Configuration menu
    Copy the full SHA
    7f3211f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #182 from kaysievers/tinyusb-descriptor-len

    tinyusb: Correct descriptor string length calculation
    hathach authored Nov 19, 2019
    Configuration menu
    Copy the full SHA
    5f68c65 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2019

  1. Configuration menu
    Copy the full SHA
    6630fe7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    516cec5 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2019

  1. Configuration menu
    Copy the full SHA
    4cca5de View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2019

  1. Configuration menu
    Copy the full SHA
    dfac9e8 View commit details
    Browse the repository at this point in the history
  2. tinyusb submodule work well

    hathach committed Dec 19, 2019
    Configuration menu
    Copy the full SHA
    2bb0a7a View commit details
    Browse the repository at this point in the history
  3. implement detach/attach

    hathach committed Dec 19, 2019
    Configuration menu
    Copy the full SHA
    a346cf7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b92b61b View commit details
    Browse the repository at this point in the history
  5. move yield() to main.cpp

    hathach committed Dec 19, 2019
    Configuration menu
    Copy the full SHA
    4f8ccb1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    dd19013 View commit details
    Browse the repository at this point in the history
  7. clean up

    hathach committed Dec 19, 2019
    Configuration menu
    Copy the full SHA
    bffd304 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2019

  1. update tinyusb core

    hathach committed Dec 20, 2019
    Configuration menu
    Copy the full SHA
    21b3e13 View commit details
    Browse the repository at this point in the history
  2. clean up

    hathach committed Dec 20, 2019
    Configuration menu
    Copy the full SHA
    f996c94 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #190 from hathach/develop

    refactor tinyusb core
    ladyada authored Dec 20, 2019
    Configuration menu
    Copy the full SHA
    1941e17 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2019

  1. Configuration menu
    Copy the full SHA
    31fc54d View commit details
    Browse the repository at this point in the history
  2. update tinyusb core

    hathach committed Dec 24, 2019
    Configuration menu
    Copy the full SHA
    861fec5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #192 from hathach/develop

    update tinyusb
    hathach authored Dec 24, 2019
    Configuration menu
    Copy the full SHA
    b1a7975 View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2019

  1. Configuration menu
    Copy the full SHA
    2179f63 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #193 from hathach/develop

    tinyusb core: improve setup handling
    hathach authored Dec 25, 2019
    Configuration menu
    Copy the full SHA
    1dcf3c5 View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2019

  1. improve tinyusb samd driver

    hathach committed Dec 26, 2019
    Configuration menu
    Copy the full SHA
    8e3c4bc View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2019

  1. update tinyusb core

    hathach committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    2ca9dfd View commit details
    Browse the repository at this point in the history
  2. Merge pull request #194 from hathach/develop

    improve tinyusb samd driver
    hathach authored Dec 27, 2019
    Configuration menu
    Copy the full SHA
    2bf2a37 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2019

  1. Configuration menu
    Copy the full SHA
    99f1fa3 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2019

  1. Increase version for release

    hathach authored Dec 30, 2019
    Configuration menu
    Copy the full SHA
    32e5394 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2019

  1. Configuration menu
    Copy the full SHA
    fc737be View commit details
    Browse the repository at this point in the history
  2. Merge pull request #199 from hathach/develop

    revert 6630fe7 availableForWrite() return int
    hathach authored Dec 31, 2019
    Configuration menu
    Copy the full SHA
    18b64d4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    137c0bd View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2020

  1. test metro_m0 build

    hathach committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    411cfa6 View commit details
    Browse the repository at this point in the history
  2. add build all script

    hathach committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    90c0b48 View commit details
    Browse the repository at this point in the history
  3. update lib deps

    hathach committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    1595e2f View commit details
    Browse the repository at this point in the history
  4. add metro_m4 test

    hathach committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    9d9b509 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c53c443 View commit details
    Browse the repository at this point in the history
  6. add skip file

    hathach committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    bab8b92 View commit details
    Browse the repository at this point in the history
  7. drop monster_m4sk

    hathach committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    2cc7f72 View commit details
    Browse the repository at this point in the history
  8. add action badge to readme

    hathach committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    f2a2126 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #200 from hathach/action-ci

    Add action ci to build examples in libraries folder that comes with BSP
    ladyada authored Jan 2, 2020
    Configuration menu
    Copy the full SHA
    c14e078 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2020

  1. fix #187

    ladyada committed Jan 7, 2020
    Configuration menu
    Copy the full SHA
    ed2dded View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4cc3251 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    460b1c2 View commit details
    Browse the repository at this point in the history
  4. add math linker test!

    ladyada committed Jan 7, 2020
    Configuration menu
    Copy the full SHA
    1df7e52 View commit details
    Browse the repository at this point in the history
  5. Update boards.txt

    Added extra space to force rerun of CI
    rlcamp authored Jan 7, 2020
    Configuration menu
    Copy the full SHA
    34013bf View commit details
    Browse the repository at this point in the history
  6. Merge pull request #202 from rlcamp/master

    Force linker to use newer Arduino-provided versions of libarm_cortexM4lf_math.a
    ladyada authored Jan 7, 2020
    Configuration menu
    Copy the full SHA
    330cb4e View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2020

  1. Fix warnings about redefinition of LITTLE_ENDIAN

    For safety, this fix also validates that, if
    `LITTLE_ENDIAN` was already defined, that it
    was defined to have the same value that the
    code sets this to.
    henrygab committed Jan 17, 2020
    Configuration menu
    Copy the full SHA
    70d3c1d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    52c988f View commit details
    Browse the repository at this point in the history
  3. Fix unintended fall-through

    The compiler found this, not me.  Building with
    all warnings enabled is recommended.
    henrygab committed Jan 17, 2020
    Configuration menu
    Copy the full SHA
    8afd052 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #206 from henrygab/fix_compile_warnings

    Fix compile warnings
    ladyada authored Jan 17, 2020
    Configuration menu
    Copy the full SHA
    bee96c4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cb97944 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    622d9f6 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    155cbc5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9ab68e1 View commit details
    Browse the repository at this point in the history
  9. cast to uint32_t to avoid compiler warning

    that said, it's possible this api might return
    a variety of non-zero codes.  code could benefit
    from being updated (e.g., documenting return codes)
    henrygab committed Jan 17, 2020
    Configuration menu
    Copy the full SHA
    4f80972 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d5935a8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    3253d46 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    a2dd861 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    4276526 View commit details
    Browse the repository at this point in the history
  14. Disable -Wimplicit-fallthrough for these two files.

    These two files contain code with multiple switch statements,
    where one case "fall through" to the next case.
    As it's not currently clear if this is intentional or not,
    rather than modifying the code in any way (regression risk),
    use GCC diagnostic pragmas to disable this warning for
    only these two files, with BUGBUG marking to encourage
    review by someone more familiar with this code.
    henrygab committed Jan 17, 2020
    Configuration menu
    Copy the full SHA
    e1e7b37 View commit details
    Browse the repository at this point in the history
  15. Enhance warning output.

    Add comment to line GCC points finger at.
    This is not intended to fix the warning.
    Rather, it is intended to make it clearer
    that this may need a deeper review before
    determining what (if any) code change would
    be appropriate.
    henrygab committed Jan 17, 2020
    Configuration menu
    Copy the full SHA
    1a89b14 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    5cbfd74 View commit details
    Browse the repository at this point in the history
  17. Disable -Wimplicit-fallthrough in sections

    These two files contain code with switch statements,
    where one case "fall through" to the next case.
    As it's not currently clear if this is intentional or not,
    rather than modifying the code in any way (regression risk),
    use GCC diagnostic pragmas to disable this warning for
    only these two files, with BUGBUG marking to encourage
    review by someone more familiar with this code.
    henrygab committed Jan 17, 2020
    Configuration menu
    Copy the full SHA
    c68c0b1 View commit details
    Browse the repository at this point in the history
  18. Improve variant compliance

    Starting in SAMD CORE 1.6.6, `digitalPinToInterrupt`
    was moved to Arduino.h, variant.h must no longer define it.
    henrygab committed Jan 17, 2020
    Configuration menu
    Copy the full SHA
    12c4506 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2020

  1. add flash definitions

    ladyada committed Feb 2, 2020
    Configuration menu
    Copy the full SHA
    6be9163 View commit details
    Browse the repository at this point in the history
  2. & circuitplay too!

    ladyada committed Feb 2, 2020
    Configuration menu
    Copy the full SHA
    b09a926 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2020

  1. Merge pull request #210 from adafruit/flashdefines

    Flashdefines
    hathach authored Feb 3, 2020
    Configuration menu
    Copy the full SHA
    f55ecad View commit details
    Browse the repository at this point in the history
  2. Update platform.txt

    Increase version for release 1.5.10
    hathach authored Feb 3, 2020
    Configuration menu
    Copy the full SHA
    b13e6c6 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2020

  1. Update total pins

    pin 95 is onboard SD detect. Real total pins is then 96 not 95
    GMagician committed Feb 8, 2020
    Configuration menu
    Copy the full SHA
    a5271b3 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2020

  1. Merge pull request #211 from GMagician/Fix-AGCM4-total-pins

    [AGCM4] Update total pins
    ladyada authored Feb 9, 2020
    Configuration menu
    Copy the full SHA
    5b24029 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2020

  1. Configuration menu
    Copy the full SHA
    bfba981 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #214 from hathach/fix-CI_Tests-warning

    add fake CI_Tests.h header to make Arduino happy
    ladyada authored Feb 11, 2020
    Configuration menu
    Copy the full SHA
    18e455f View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2020

  1. Configuration menu
    Copy the full SHA
    aa21fb1 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2020

  1. less warnings on featherM0

    d-a-v committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    1112d77 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #217 from d-a-v/wless

    less warnings on featherM0
    ladyada authored Mar 5, 2020
    Configuration menu
    Copy the full SHA
    bf24e95 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2020

  1. Configuration menu
    Copy the full SHA
    f564235 View commit details
    Browse the repository at this point in the history
  2. sync with tinyusb commit 1d33aa9

    fix issue with MIDI sysex driver
    hathach committed Apr 21, 2020
    Configuration menu
    Copy the full SHA
    72ebc1a View commit details
    Browse the repository at this point in the history
  3. tinyusb: MIDI - Increase buffer size

    We only transfer new packets when 64 bytes are available in the FIFO
    buffer. This increase the buffer, so we can receive the next new packet
    while still processing the current one.
    kaysievers committed Apr 21, 2020
    Configuration menu
    Copy the full SHA
    aa97921 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2020

  1. Merge pull request #222 from versioduo/midi-buffer-size

    tinyusb: MIDI - Increase buffer size
    hathach authored Apr 22, 2020
    Configuration menu
    Copy the full SHA
    6c2a982 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #221 from hathach/update-tinyusb

    update tinyusb core and samd port
    hathach authored Apr 22, 2020
    Configuration menu
    Copy the full SHA
    a45b5c5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d56901d View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2020

  1. Update TinyUSB to commit c59fa77 due to a bug in the stack

    increase version 1.5.13
    hathach committed Apr 23, 2020
    Configuration menu
    Copy the full SHA
    159ae8e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #224 from hathach/release-.1.5.13

    Update TinyUSB to commit c59fa77 due to a bug in the stack
    hathach authored Apr 23, 2020
    Configuration menu
    Copy the full SHA
    d60ec0f View commit details
    Browse the repository at this point in the history

Commits on May 4, 2020

  1. Configuration menu
    Copy the full SHA
    6d6e5b1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #226 from hathach/fix-samd21-usb

    fix incorrect USB IRQ typo for samd
    hathach authored May 4, 2020
    Configuration menu
    Copy the full SHA
    e607c3d View commit details
    Browse the repository at this point in the history
  3. release 1.5.14

    fix samd21 USB IRQ typo,
    hathach authored May 4, 2020
    Configuration menu
    Copy the full SHA
    52d793e View commit details
    Browse the repository at this point in the history

Commits on May 29, 2020

  1. Configuration menu
    Copy the full SHA
    dad77cd View commit details
    Browse the repository at this point in the history
  2. Merge pull request #227 from OPEnSLab-OSU/master

    Fix I2C SERCOM Hang (from Arduino SAMD core)
    ladyada authored May 29, 2020
    Configuration menu
    Copy the full SHA
    bdf0c84 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2020

  1. add BLE uart test support

    ladyada committed Jun 23, 2020
    Configuration menu
    Copy the full SHA
    fdddb19 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2020

  1. remove gcc 7-2017q4 specific

    hathach committed Jul 5, 2020
    Configuration menu
    Copy the full SHA
    ff82b73 View commit details
    Browse the repository at this point in the history
  2. update tinyusb to 0749077

    hathach committed Jul 5, 2020
    Configuration menu
    Copy the full SHA
    00a863c View commit details
    Browse the repository at this point in the history
  3. bump up version for 1.5.15

    hathach committed Jul 5, 2020
    Configuration menu
    Copy the full SHA
    246c75a View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2020

  1. Configuration menu
    Copy the full SHA
    290f3d6 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2020

  1. Configuration menu
    Copy the full SHA
    53c92d4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #232 from hathach/update-toolchain-cmsis

    Update toolchain cmsis, fix build with tensorflow
    hathach authored Jul 7, 2020
    Configuration menu
    Copy the full SHA
    196a29f View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2020

  1. Configuration menu
    Copy the full SHA
    2569103 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #235 from hathach/fix-ci-build

    move test_cmsis_fast_rfft example to its own folder to fix ci build
    ladyada authored Jul 13, 2020
    Configuration menu
    Copy the full SHA
    4b669ea View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2020

  1. increase 1.6.1 for release

    hathach authored Jul 21, 2020
    Configuration menu
    Copy the full SHA
    50f9be1 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2020

  1. Fix external pin interrupt definitions for Feather M4

    Spent a while trying to figure out why analog pins A4/18 and A5/19 where not working as interrupts, turns out the external interrupt definitions are wrong in-code. These fixed definitions now match the published pinout diagram for the feather m4 and the samd51 datasheet.
    NanoCodeBug authored Jul 22, 2020
    Configuration menu
    Copy the full SHA
    57db4d7 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2020

  1. Configuration menu
    Copy the full SHA
    2555c2d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #241 from adafruit/sync-tinyusb-238a5c0b95fcd402d2…

    …4524c7bebbdd822168a51e
    
    Sync with Adafruit_TinyUSB_ArduinoCore
    hathach authored Jul 23, 2020
    Configuration menu
    Copy the full SHA
    4141fce View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2020

  1. Merge pull request #239 from NanoCodeBug/patch-1

    Fix external pin interrupt definitions for Feather M4
    hathach authored Jul 24, 2020
    Configuration menu
    Copy the full SHA
    3f0f35f View commit details
    Browse the repository at this point in the history
  2. fix EXTINT for PA4 and PA6

    follow up to #239
    hathach committed Jul 24, 2020
    Configuration menu
    Copy the full SHA
    860bc6c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    76f0206 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #242 from adafruit/fix-extint-m4

    Fix extint m4
    hathach authored Jul 24, 2020
    Configuration menu
    Copy the full SHA
    d9e9508 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2020

  1. add blm badge

    ladyada committed Jul 25, 2020
    Configuration menu
    Copy the full SHA
    0947169 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2020

  1. Enable Interrupt #8 on Pin PORTA28 (GPIO2)

    In order to use IRLibRecvPCI class from IRLib2 with Adafruit pIRKey, it's necessary to allow interrupts on this pin.
    nekuneko authored Jul 27, 2020
    Configuration menu
    Copy the full SHA
    b1572ce View commit details
    Browse the repository at this point in the history
  2. Merge pull request #243 from nekuneko/patch-1

    Enable Interrupt #8 on Pin PORTA28 (GPIO2)
    ladyada authored Jul 27, 2020
    Configuration menu
    Copy the full SHA
    ea9f1a5 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2020

  1. Per @hathach request

    henrygab committed Aug 4, 2020
    Configuration menu
    Copy the full SHA
    00dd2e0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    25a5789 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a2801a1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    77321a6 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2020

  1. Revert "TEST: Is LITTLE_ENDIAN already properly defined?"

    This reverts commit 5cbfd74.
    henrygab committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    eb3c114 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    adc0866 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2020

  1. Configuration menu
    Copy the full SHA
    528a25e View commit details
    Browse the repository at this point in the history
  2. typo - missing semicolon

    henrygab committed Aug 6, 2020
    Configuration menu
    Copy the full SHA
    134ebe7 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2020

  1. Configuration menu
    Copy the full SHA
    55a9930 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2020

  1. Use FIXME instead of BUGBUG

    henrygab committed Aug 10, 2020
    Configuration menu
    Copy the full SHA
    66b0a74 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #207 from henrygab/fix_compile_warnings3

    Improve build script & fix more warnings
    hathach authored Aug 10, 2020
    Configuration menu
    Copy the full SHA
    fd40287 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2020

  1. Configuration menu
    Copy the full SHA
    420b9a8 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2020

  1. Configuration menu
    Copy the full SHA
    94e908c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #196 from ulysse314/unusedvariable

    Removing _dacResolution for __SAMD51__ is not defined (variable not used)
    hathach authored Aug 20, 2020
    Configuration menu
    Copy the full SHA
    37a6ab9 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2020

  1. Configuration menu
    Copy the full SHA
    1e92424 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2020

  1. use TC1 for servo, TC0 for tone for samd51

    - make Tone_Handler() a strong symbol
    hathach committed Aug 28, 2020
    Configuration menu
    Copy the full SHA
    aa5fa81 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #257 from adafruit/fix-tone

    Fix tone on SAMD51
    hathach authored Aug 28, 2020
    Configuration menu
    Copy the full SHA
    83b63b1 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2020

  1. Configuration menu
    Copy the full SHA
    1264ec6 View commit details
    Browse the repository at this point in the history
  2. add variant

    ladyada committed Aug 29, 2020
    Configuration menu
    Copy the full SHA
    731adc7 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2020

  1. add fake LED

    ladyada committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    66097a8 View commit details
    Browse the repository at this point in the history
  2. add blm badge

    ladyada committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    1ba7379 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #258 from adafruit/blmbadge

    add blm badge
    ladyada authored Aug 30, 2020
    Configuration menu
    Copy the full SHA
    d1c52f2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    287d079 View commit details
    Browse the repository at this point in the history
  5. oof bad merge

    ladyada committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    9827155 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2020

  1. add bootloader

    ladyada committed Aug 31, 2020
    Configuration menu
    Copy the full SHA
    c044ba3 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2020

  1. Merge pull request #259 from adafruit/matrixportal

    Matrix portal draft
    ladyada authored Sep 4, 2020
    Configuration menu
    Copy the full SHA
    8d3b49b View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2020

  1. Configuration menu
    Copy the full SHA
    9ba4e98 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2020

  1. rev A variant

    ladyada committed Sep 12, 2020
    Configuration menu
    Copy the full SHA
    028ca90 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2020

  1. test external SPI flash + I2S

    ladyada committed Sep 13, 2020
    Configuration menu
    Copy the full SHA
    28cbc71 View commit details
    Browse the repository at this point in the history
  2. fix some pin numbers so that there's an LED on pin 13

    add external SPI
    ladyada committed Sep 13, 2020
    Configuration menu
    Copy the full SHA
    bdf5ac8 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2020

  1. update tinyusb core to commit 0328bd4c134d05b4bb0472e0db918153f4dd15dd

    also set string descriptor for Serial CDC
    hathach committed Sep 15, 2020
    Configuration menu
    Copy the full SHA
    a0d7cfd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4888cdc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    814a352 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #263 from ulysse314/adafruit-master

    Avoiding unused parameter warning for dmaDoNothingCallback()
    ladyada authored Sep 15, 2020
    Configuration menu
    Copy the full SHA
    e6c07cc View commit details
    Browse the repository at this point in the history
  5. Merge pull request #262 from adafruit/update-tinyusb

    update tinyusb core
    hathach authored Sep 15, 2020
    Configuration menu
    Copy the full SHA
    6a59e83 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2020

  1. Configuration menu
    Copy the full SHA
    fad2d91 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a029d61 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2020

  1. rev C complete!

    ladyada committed Sep 23, 2020
    Configuration menu
    Copy the full SHA
    bdd8ee9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4a5f9f7 View commit details
    Browse the repository at this point in the history
  3. fix name of chip

    ladyada committed Sep 23, 2020
    Configuration menu
    Copy the full SHA
    0d46fb5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a2151f3 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #264 from adafruit/qtpy

    QT Py!
    hathach authored Sep 23, 2020
    Configuration menu
    Copy the full SHA
    e99eb50 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #265 from adafruit/fix-warning

    fix matrixportal_m4 warning define
    ladyada authored Sep 23, 2020
    Configuration menu
    Copy the full SHA
    9c667a4 View commit details
    Browse the repository at this point in the history
  7. increase for 1.6.3 release

    hathach authored Sep 23, 2020
    Configuration menu
    Copy the full SHA
    9d4bdb8 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2020

  1. Configuration menu
    Copy the full SHA
    fa095b3 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2020

  1. fix #266

    ladyada committed Oct 1, 2020
    Configuration menu
    Copy the full SHA
    4c6d754 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2020

  1. boards.txt: add Feather CAN

    jepler committed Oct 6, 2020
    Configuration menu
    Copy the full SHA
    0c8e1ed View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1ffdc7d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7ae96b4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ad022b4 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2020

  1. feather_m4_can: Add CAN-related pins to variant files

    40: CAN_STANDBY
    41: CAN_TX
    42: CAN_RX
    jepler committed Oct 7, 2020
    Configuration menu
    Copy the full SHA
    308e949 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3ab4dfe View commit details
    Browse the repository at this point in the history
  3. correct board name string

    jepler committed Oct 7, 2020
    Configuration menu
    Copy the full SHA
    f077606 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2020

  1. Configuration menu
    Copy the full SHA
    3471cdf View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2020

  1. Add CAN handlers for SAM E51

    jepler committed Oct 20, 2020
    Configuration menu
    Copy the full SHA
    da80034 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #267 from jepler/feather-can-bsp

    Adafruit Feather M4 CAN: Add support for board
    ladyada authored Oct 20, 2020
    Configuration menu
    Copy the full SHA
    b94b432 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2020

  1. Configuration menu
    Copy the full SHA
    54beccb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #269 from adafruit/m0-optimization-option

    added optimization menu option for M0
    ladyada authored Oct 31, 2020
    Configuration menu
    Copy the full SHA
    d0396b0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b823585 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #270 from mdonoughe/matrixportal-led

    update LED_BUILTIN for matrixportal_m4
    ladyada authored Oct 31, 2020
    Configuration menu
    Copy the full SHA
    0b16016 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2020

  1. Configuration menu
    Copy the full SHA
    1fa45ad View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2020

  1. Configuration menu
    Copy the full SHA
    ec69488 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2020

  1. Fix addpath (#275)

    * try it!
    ladyada authored Dec 10, 2020
    Configuration menu
    Copy the full SHA
    f2a72d1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dcc531f View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2020

  1. Added a isBusy() method to SPI calls to allow non-blocking polling of…

    … the DMA transfer status.
    RudolphRiedel committed Dec 28, 2020
    Configuration menu
    Copy the full SHA
    3c7a2d5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #279 from RudolphRiedel/master

    Added a isBusy() method to SPI calls to allow non-blocking polling of…
    PaintYourDragon authored Dec 28, 2020
    Configuration menu
    Copy the full SHA
    12e0a79 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2021

  1. Configuration menu
    Copy the full SHA
    9ddc306 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    812399f View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2021

  1. Fix EINT listing for pin 4

    I think this file doesn't match the circuit diagram listing at https://cdn-learn.adafruit.com/assets/assets/000/047/156/original/circuit_playground_Adafruit_Circuit_Playground_Express_Pinout.png?1507829017.
    
    It causes the interrupt pin checking code in ArduinoLowPower to fail, meaning it won't listen to interrupts from button A. Button B works fine.
    matt-chan authored Jan 25, 2021
    Configuration menu
    Copy the full SHA
    aa706d7 View commit details
    Browse the repository at this point in the history
  2. Fix remaining EINT values

    Add additional EINT fixes for PA{0,1,30}, PB{3, 23}.
    matt-chan authored Jan 25, 2021
    Configuration menu
    Copy the full SHA
    8c6f2dd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7716ebb View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2021

  1. Configuration menu
    Copy the full SHA
    8dcab42 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #281 from matt-chan/patch-1

    Fix EINT listing for pin 4
    hathach authored Jan 26, 2021
    Configuration menu
    Copy the full SHA
    e16a55b View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2021

  1. Port some AVR Serial_ (SerialUSB) API's over (#285)

    Co-authored-by: Sandeep Mistry <[email protected]>
    myelin and sandeepmistry authored Mar 6, 2021
    Configuration menu
    Copy the full SHA
    aebf3cb View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2021

  1. add new variant

    ladyada committed Mar 14, 2021
    Configuration menu
    Copy the full SHA
    3adf881 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2021

  1. typo fixes!

    ladyada committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    af4f2cb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #286 from adafruit/neotrinkey

    add new variant
    hathach authored Mar 15, 2021
    Configuration menu
    Copy the full SHA
    9e15226 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    243c208 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2021

  1. Cast to integral type ignores qualifier volatile

    Attempting to cast to a `volatile uint32_t` does nothing different from cast to a `uint32_t`,
    with the exception of **_looking like_** it's accessing a register.
    henrygab authored Mar 25, 2021
    Configuration menu
    Copy the full SHA
    d542a60 View commit details
    Browse the repository at this point in the history
  2. Fix [-Wrestrict] bug

    Untested...
    henrygab authored Mar 25, 2021
    Configuration menu
    Copy the full SHA
    76f999b View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2021

  1. Merge pull request #288 from henrygab/patch-1

    Cast to integral type ignores qualifier `volatile`
    hathach authored Mar 29, 2021
    Configuration menu
    Copy the full SHA
    e340701 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2021

  1. Fix loop iterations

    henrygab authored Apr 9, 2021
    Configuration menu
    Copy the full SHA
    a7a9d2d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1870cef View commit details
    Browse the repository at this point in the history
  3. increase version to 1.6.7

    hathach committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    c477272 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #291 from adafruit/use-same51-from-cmsis-atmel-tool

    Use same51 from cmsis atmel tool
    hathach authored Apr 9, 2021
    Configuration menu
    Copy the full SHA
    dffa5b8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ea208a4 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2021

  1. Merge pull request #289 from henrygab/patch-2

    Fix [-Wrestrict] bug
    hathach authored Apr 13, 2021
    Configuration menu
    Copy the full SHA
    ade7caf View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2021

  1. Narrowly silence new (GCC 8.1+) warning (#290)

    Fixes #287
    
    The warnings look like:
    ```
          Line 338 Char 37
          warning: 'void* memcpy(void*, const void*, size_t)' 
                   writing to an object of type 'struct DmacDescriptor'
                   with no trivial copy-assignment [-Wclass-memaccess]
    ```
    henrygab authored Apr 30, 2021
    Configuration menu
    Copy the full SHA
    439c6b5 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2021

  1. Trinkeys (#296)

    * add rotary trinkey rev B
    
    * add slide trinkey
    
    * proximity sensing trinkey
    
    * update variant to shipping
    
    * forgot one!
    
    * fix two typos
    
    * fix up slide trinkey for rev B
    ladyada authored May 8, 2021
    Configuration menu
    Copy the full SHA
    c26a837 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2021

  1. Configuration menu
    Copy the full SHA
    48956dd View commit details
    Browse the repository at this point in the history

Commits on May 13, 2021

  1. add definition for touchpad

    ladyada committed May 13, 2021
    Configuration menu
    Copy the full SHA
    322f2ff View commit details
    Browse the repository at this point in the history

Commits on May 14, 2021

  1. A11 isnt an analog in!

    ladyada committed May 14, 2021
    Configuration menu
    Copy the full SHA
    93b1ba1 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2021

  1. add AREF pin as A12

    ladyada committed May 18, 2021
    Configuration menu
    Copy the full SHA
    32b62c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eb0d6ef View commit details
    Browse the repository at this point in the history