doc: reference: Add ec host command api hooks
Adds missing hooks to include the ec host command api in the generated documentation. Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
This commit is contained in:
parent
0962b30173
commit
b985624572
3 changed files with 26 additions and 0 deletions
14
doc/reference/peripherals/ec_host_cmd_periph.rst
Normal file
14
doc/reference/peripherals/ec_host_cmd_periph.rst
Normal file
|
@ -0,0 +1,14 @@
|
|||
.. _ec_host_cmd_periph_api:
|
||||
|
||||
EC Host Command
|
||||
###############
|
||||
|
||||
Overview
|
||||
********
|
||||
|
||||
|
||||
API Reference
|
||||
*************
|
||||
|
||||
.. doxygengroup:: ec_host_cmd_periph_interface
|
||||
:project: Zephyr
|
|
@ -11,6 +11,7 @@ Peripherals
|
|||
clock_control.rst
|
||||
dac.rst
|
||||
dma.rst
|
||||
ec_host_cmd_periph.rst
|
||||
eeprom.rst
|
||||
entropy.rst
|
||||
flash.rst
|
||||
|
|
|
@ -7,6 +7,13 @@
|
|||
#ifndef ZEPHYR_INCLUDE_EC_HOST_CMD_H_
|
||||
#define ZEPHYR_INCLUDE_EC_HOST_CMD_H_
|
||||
|
||||
/**
|
||||
* @brief EC Host Command Interface
|
||||
* @defgroup ec_host_cmd_periph_interface EC Host Command Interface
|
||||
* @ingroup io_interfaces
|
||||
* @{
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
/**
|
||||
|
@ -194,4 +201,8 @@ enum ec_host_cmd_status {
|
|||
} __packed;
|
||||
BUILD_ASSERT(sizeof(enum ec_host_cmd_status) == sizeof(uint16_t));
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
#endif /* ZEPHYR_INCLUDE_EC_HOST_CMD_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue