-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
sensors: codegen for attr/chan/trig #83077
base: main
Are you sure you want to change the base?
Changes from all commits
cdf74f0
9530d30
abddb32
5d654bf
354b954
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# DOC: used to generate docs | ||
|
||
sphinx | ||
sphinx>=8.1 | ||
sphinx_rtd_theme~=3.0 | ||
sphinx-tabs | ||
sphinx-tabs>=3.4.7 | ||
sphinxcontrib-svg2pdfconverter | ||
pygments>=2.9,!=2.19.0 | ||
sphinx-notfound-page | ||
|
@@ -24,3 +24,6 @@ doxmlparser | |
|
||
# Used by the Zephyr domain to organize code samples | ||
anytree | ||
|
||
# Used to generate the sensor catalog | ||
pigweed>=0.0.20 | ||
Comment on lines
+28
to
+29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why does every user need this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Pigweed python library is where we developed the sensor codegen library. This allowed us to start onboarding teams that don't use Zephyr to use the same sensor standard descriptor without having to add Zephyr as a dependency (yet). |
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.
why are there full stops in target names?
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.
Why not? I've used them before in other projects. I'm happy to remove them. I use them to denote subpackage like targets. Makes it harder for things to collide when generating targets.
I'm happy to remove the
.
if you feel strongly about it.