-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add missing UART instances * Add SPI to list of peripherals to be created * Refactor SPI driver to use PeripheralRef
- Loading branch information
Showing
7 changed files
with
107 additions
and
88 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 |
---|---|---|
|
@@ -54,5 +54,10 @@ mod peripherals { | |
crate::create_peripherals! { | ||
UART0, | ||
UART1, | ||
UART2, | ||
SPI0, | ||
SPI1, | ||
SPI2, | ||
SPI3, | ||
} | ||
} |
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 |
---|---|---|
|
@@ -36,5 +36,8 @@ mod peripherals { | |
crate::create_peripherals! { | ||
UART0, | ||
UART1, | ||
SPI0, | ||
SPI1, | ||
SPI2, | ||
} | ||
} |
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 |
---|---|---|
|
@@ -47,5 +47,8 @@ mod peripherals { | |
crate::create_peripherals! { | ||
UART0, | ||
UART1, | ||
SPI0, | ||
SPI1, | ||
SPI2, | ||
} | ||
} |
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 |
---|---|---|
|
@@ -52,5 +52,10 @@ mod peripherals { | |
crate::create_peripherals! { | ||
UART0, | ||
UART1, | ||
SPI0, | ||
SPI1, | ||
SPI2, | ||
SPI3, | ||
SPI4, | ||
} | ||
} |
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 |
---|---|---|
|
@@ -63,5 +63,10 @@ mod peripherals { | |
crate::create_peripherals! { | ||
UART0, | ||
UART1, | ||
UART2, | ||
SPI0, | ||
SPI1, | ||
SPI2, | ||
SPI3, | ||
} | ||
} |
Oops, something went wrong.