summaryrefslogtreecommitdiff
path: root/examples/device/audio_test/src
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2023-08-03 20:41:13 +0700
committerGitHub <[email protected]>2023-08-03 20:41:13 +0700
commit6d03bb9ffc4c80a0c2663f0b791856af89e20adc (patch)
tree63d5df546016ff54baeddb7aca24acc165872abe /examples/device/audio_test/src
parentd91869a1fab0ebc7695eb981ae91ec8a35b2511f (diff)
parentedee46e7941f56f5024bf60d56921cfe10d1f7a5 (diff)
Merge pull request #2052 from arduino/renesas_ra_hs_rebased
Renesas_RA: add support for board with HS USB port
Diffstat (limited to 'examples/device/audio_test/src')
-rw-r--r--examples/device/audio_test/src/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/device/audio_test/src/main.c b/examples/device/audio_test/src/main.c
index b5ca41d36..6dc655416 100644
--- a/examples/device/audio_test/src/main.c
+++ b/examples/device/audio_test/src/main.c
@@ -85,6 +85,10 @@ int main(void)
// init device stack on configured roothub port
tud_init(BOARD_TUD_RHPORT);
+ if (board_init_after_tusb) {
+ board_init_after_tusb();
+ }
+
// Init values
sampFreq = AUDIO_SAMPLE_RATE;
clkValid = 1;