-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generated device driver docs #30104
Closed
mbolivar-nordic
wants to merge
11
commits into
zephyrproject-rtos:master
from
mbolivar-nordic:dt-driver-docs
+1,090
−103
Closed
Generated device driver docs #30104
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
97111d0
doc: dts: add link from bindings guide to bindings index
mbolivar-nordic 4e1d179
scripts: dts: gen_defines: don't include descriptions
mbolivar-nordic 6c289c0
doc: add @dtcompatible to doxygen ALIASES
mbolivar-nordic 358b0f0
[wip] doc: add some more macros to PREDEFINED
mbolivar-nordic 34a4713
doc: add docstring to link-roles.py
mbolivar-nordic 700206d
doc: add new :dtcompatible: role / directive
mbolivar-nordic 799644a
doc: add drivers subdirectories to doxygen
mbolivar-nordic 2235d39
doc: add @zephyrdriver to doxygen ALIASES
mbolivar-nordic c6d8ff4
[wip] dts: bindings: improve documentation for Nordic IPs
mbolivar-nordic 383c3ea
[wip] drivers: add doxygen for Nordic peripheral drivers
mbolivar-nordic 65bc4f4
[wip] doc: add driver index
mbolivar-nordic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
doc: add drivers subdirectories to doxygen
This pulls various driver source files into the documentation build system's awareness, making their doxygen comments available to Breathe and other scripts. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
commit 799644a5db352f5239c03638acfe735ed2cba700
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This worries me a little: until now headers that were private to a driver subsystem would never be accessed outside that subsystem, so there was little concern about ensuring public identifiers are globally unique.
Now MISRA apparently wants every identifier anywhere in the program to be unique, though that's not really feasible, and maybe this isn't going to bite us too bad, but it leaves me nervous.