Commit f4a85bba authored by Benjamin Cabé's avatar Benjamin Cabé Committed by Benjamin Cabé
Browse files

include: drivers: consolidate emulation headers



Do not clutter the "Device Drivers" documentation with emulation
headers.
Ensure each emulated device API appears both in the device group as
well as "Emulator interfaces" (e.g. bbram_emul is showing up in
both BBRAM docs as well as Emulator Interfaces docs)

Signed-off-by: default avatarBenjamin Cabé <benjamin@zephyrproject.org>
parent 488b1aa1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ extern "C" {
/**
 * @brief Emulated ADC backend API
 * @defgroup adc_emul Emulated ADC
 * @ingroup io_emulators
 * @ingroup adc_interface
 * @{
 *
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@

/**
 * @brief Emulators used to test drivers and higher-level code that uses them
 * @defgroup io_emulators Emulator interface
 * @defgroup io_emulators Emulator interfaces
 * @ingroup testing
 * @{
 */
+2 −1
Original line number Diff line number Diff line
@@ -13,7 +13,8 @@
/**
 * @brief BBRAM emulator backend API
 * @defgroup bbram_emulator_backend BBRAM emulator backend API
 * @ingroup io_interfaces
 * @ingroup io_emulators
 * @ingroup bbram_interface
 * @{
 */

+2 −1
Original line number Diff line number Diff line
@@ -23,7 +23,8 @@ extern "C" {
/**
 * @brief Fuel gauge backend emulator APIs
 * @defgroup fuel_gauge_emulator_backend Fuel gauge backend emulator APIs
 * @ingroup io_interfaces
 * @ingroup io_emulators
 * @ingroup fuel_gauge_interface
 * @{
 */

+2 −1
Original line number Diff line number Diff line
@@ -12,7 +12,8 @@
/**
 * @brief Sensor emulator backend API
 * @defgroup sensor_emulator_backend Sensor emulator backend API
 * @ingroup io_interfaces
 * @ingroup io_emulators
 * @ingroup sensor_interface
 * @{
 */

Loading