Draft
Conversation
While we prepare a cleaner solution, this patch allows back and forth between pinmuxes.
Tested on UNO Q with next patch in the series and this sketch
void loop() {
Serial.begin(115200);
Serial.println("helloooooo");
delay(20);
Serial.end();
delay(20);
pinMode(1, OUTPUT);
digitalWrite(1, HIGH);
delay(10);
digitalWrite(1, LOW);
delay(100);
analogWrite(1, 33);
}
Pin 1 correctly prints the string, muxes as GPIo and then produces the required PWM
As these pins are shown as Wire pins on the official documents such as the pinout and multiple people have reported that it does not work.
Target is supported by the library so any PR should check this functionality in the CI runs, like on zephyr_main boards. Signed-off-by: Luca Burelli <l.burelli@arduino.cc>
ci: enable BLE tests on Arduino UNO Q
This argument is not used and a proper refactor is still pending, so just mark it as unused for now to avoid warnings. Signed-off-by: Luca Burelli <l.burelli@arduino.cc>
308951c to
b87778e
Compare
libraries/SocketWrapper: squash unused argument warning
b87778e to
bb3acd6
Compare
core: pinmux: implement rough solution
UnoQ: Add Wire2 to A4/A5 pins
b666e14 to
fdb8d5c
Compare
Use the new ci_calc_size_reports.py script to calculate size deltas for PRs, using the report archived at the time base commit of the PR was created as reference. The resulting delta information is added to the JSON report files, and a summary table is printed in the logs. The delta information is also used by the report-size-deltas workflow to post a comment in the PR with the size delta details. Signed-off-by: Luca Burelli <l.burelli@arduino.cc>
fdb8d5c to
0a80755
Compare
This file contains hidden or 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
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.