Skip to content

Commit 6d03bb9

Browse files
authored
Merge pull request hathach#2052 from arduino/renesas_ra_hs_rebased
Renesas_RA: add support for board with HS USB port
2 parents d91869a + edee46e commit 6d03bb9

File tree

96 files changed

+2919
-1033
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+2919
-1033
lines changed

.github/workflows/build_arm.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ jobs:
3939
- 'lpc51 lpc54'
4040
- 'mm32 msp432e4'
4141
- 'nrf'
42-
- 'ra'
4342
- 'samd11 samd21'
4443
- 'samd51 same5x'
4544
- 'saml2x'

.idea/cmake.xml

Lines changed: 5 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/ra4m1.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/ra6m1.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/ra6m5.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/uno_r4.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/device/audio_4_channel_mic/src/main.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ int main(void)
8484
// init device stack on configured roothub port
8585
tud_init(BOARD_TUD_RHPORT);
8686

87+
if (board_init_after_tusb) {
88+
board_init_after_tusb();
89+
}
90+
8791
// Init values
8892
sampFreq = AUDIO_SAMPLE_RATE;
8993
clkValid = 1;

examples/device/audio_test/src/main.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ int main(void)
8585
// init device stack on configured roothub port
8686
tud_init(BOARD_TUD_RHPORT);
8787

88+
if (board_init_after_tusb) {
89+
board_init_after_tusb();
90+
}
91+
8892
// Init values
8993
sampFreq = AUDIO_SAMPLE_RATE;
9094
clkValid = 1;

examples/device/audio_test_multi_rate/src/main.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ int main(void)
9999
// init device stack on configured roothub port
100100
tud_init(BOARD_TUD_RHPORT);
101101

102+
if (board_init_after_tusb) {
103+
board_init_after_tusb();
104+
}
105+
102106
// Init values
103107
sampFreq = sampleRatesList[0];
104108
clkValid = 1;

examples/device/cdc_dual_ports/src/main.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ int main(void)
4242
// init device stack on configured roothub port
4343
tud_init(BOARD_TUD_RHPORT);
4444

45+
if (board_init_after_tusb) {
46+
board_init_after_tusb();
47+
}
48+
4549
while (1)
4650
{
4751
tud_task(); // tinyusb device task

0 commit comments

Comments
 (0)