-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I2S driver + Basic Audio sample (#1862)
* I2S driver * Arduino I2S compatibility layer * Add `MinMaxTimes` class template, `MinMax32` and `CpuUsage` to Profiling Also update linker script so times can be used in interrupt context * Add `GDB_UART_SWAP` option * Add SignalGenerator library * Basic Audio sample * Fix codacy issues
- Loading branch information
Showing
41 changed files
with
4,051 additions
and
41 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* From RTOS SDK | ||
*/ | ||
|
||
PROVIDE ( GPIO = 0x60000300); | ||
|
||
PROVIDE ( uart0 = 0x60000000 ); | ||
PROVIDE ( uart1 = 0x60000f00 ); | ||
|
||
PROVIDE ( frc1 = 0x60000600 ); | ||
|
||
PROVIDE ( rtc_sys_info = 0x60001100 ); | ||
|
||
PROVIDE ( SLC0 = 0x60000B00 ); | ||
PROVIDE ( I2S0 = 0x60000e00 ); | ||
|
||
PROVIDE ( SPI1 = 0x60000100 ); | ||
PROVIDE ( SPI0 = 0x60000200 ); |
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
Oops, something went wrong.