-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: document custom platform interfaces
Define a set of platform hooks. Signed-off-by: Anas Nashif <[email protected]>
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.. _platform_cusomizations: | ||
|
||
Hardware with Custom Interfaces | ||
############################### | ||
|
||
When the provided support in Zephyr does not cover certain hardware platforms, | ||
some interfaces can be implemented directly by the platform or a custom | ||
architecture interface can be used and resulting in more flexibility and | ||
hardware support of differebt variants of the same hardware. | ||
|
||
Below is a list of interfaces that can be implemented by the platform overriding | ||
the default implementation available in Zephyr: | ||
|
||
- Interrupt Controller | ||
- System IO operations | ||
- Busy Wait |
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 |
---|---|---|
|
@@ -10,4 +10,5 @@ These pages document how to port Zephyr to new hardware. | |
|
||
arch.rst | ||
board_porting.rst | ||
custom.rst | ||
shields.rst |