-
-
Notifications
You must be signed in to change notification settings - Fork 725
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
PaintYourDragon
wants to merge
977
commits into
arduino:master
Choose a base branch
from
adafruit:pb-variant
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
platform: Add USB device MaxPower default setting
Set the USB descriptor strings. I accepts UTF-8 strings with codepoints up to 16 bit. void setup() { USBDevice.setManufacturer("MyManufacturer"); USBDevice.setProduct("MyProduct"); }
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));
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
Enable TC6 & TC7 for __SAMD21J18A__
Added Additonal Timers
tinyusb: Allow to replace the built-in descriptor buffer
tinyusb: Allow to set the USB manufacturer/product identifiers
add Descriptor to setManufacturer/setProduct
follow up to pr #172
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.
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.
Change references from A0 & A1 to DAC0 & DAC1
tinyusb: MIDI - split descriptor initializer into individual sections
…r stuff! (servo is TC1)
allow PDM mic on pybadge edge change pyportal backlight timer
Added a isBusy() method to SPI calls to allow non-blocking polling of…
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.
Add additional EINT fixes for PA{0,1,30}, PB{3, 23}.
Fix EINT listing for pin 4
Co-authored-by: Sandeep Mistry <s.mistry@arduino.cc>
add new variant
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.
Untested...
Cast to integral type ignores qualifier `volatile`
Use same51 from cmsis atmel tool
Fix [-Wrestrict] bug
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] ```
* 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
Matthew Chan seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.