-
Notifications
You must be signed in to change notification settings - Fork 2k
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
doc: add deprecation notice on deprecated pseudo-modules #18698
Conversation
Murdock results✔️ PASSED bb92b2b doc: add deprecation notice on deprecated pseudo-modules
ArtifactsThis only reflects a subset of all builds from https://ci-prod.riot-os.org. Please refer to https://ci.riot-os.org for a complete build for now. |
makefiles/pseudomodules.inc.mk
Outdated
## @addtogroup net_gcoap_dns | ||
## @{ | ||
## Enable the @ref gcoap_dns function | ||
PSEUDOMODULES += gcoap_dns | ||
## Enable the @ref gcoap_dns_server_proxy_set function | ||
PSEUDOMODULES += gcoap_dns_proxied | ||
## @} |
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.
Those lines were added, because otherwise Doxygen would include these to gnrc_netdev_default
's documentation.
* Finally, the module `event_thread_lowest` is provided for backward | ||
* compatibility and has no effect. | ||
* Finally, the module [event_thread_lowest](@ref sys_event_thread_lowest) is | ||
* provided for backward compatibility and has no effect. |
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.
Mainly added this here, so the missing reference will be caught, once event_thread_lowest
is removed in earnest.
6a7b911
to
0cde109
Compare
ff55ac0
to
bb92b2b
Compare
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.
Looks good enough, and any prettiness shortcomings are better addressed on the level of the pseudomodules documentation.
Contribution description
Alternative to the non-semantical page introduced in #18649.
Testing procedure
make doc
and look at the resultingdoc/doxygen/html/deprecated.html
(or see documentation artifcats in #18698 (comment)).Issues/PRs references
Alternative to a proposal in #18649.