aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/dox
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/dox')
-rw-r--r--os/hal/dox/flash.dox4
-rw-r--r--os/hal/dox/hal_peripherals.dox4
-rw-r--r--os/hal/dox/mfs.dox2
-rw-r--r--os/hal/dox/norflash.dox27
4 files changed, 10 insertions, 27 deletions
diff --git a/os/hal/dox/flash.dox b/os/hal/dox/flash.dox
index 8cfb5c3d7..4cf395292 100644
--- a/os/hal/dox/flash.dox
+++ b/os/hal/dox/flash.dox
@@ -15,8 +15,8 @@
*/
/**
- * @defgroup HAL_FLASH Generic Flash Driver Interface
- * @brief HAL Generic Flash Driver Interface.
+ * @defgroup HAL_FLASH Generic NOR Flash Interface
+ * @brief HAL Generic NOR Flash Driver Interface.
*
* @ingroup HAL_ABSTRACT_PERIPHERALS
*/
diff --git a/os/hal/dox/hal_peripherals.dox b/os/hal/dox/hal_peripherals.dox
index ac46d74b9..406ff46dc 100644
--- a/os/hal/dox/hal_peripherals.dox
+++ b/os/hal/dox/hal_peripherals.dox
@@ -15,8 +15,8 @@
*/
/**
- * @defgroup HAL_ABSTRACT_PERIPHERALS Abstract Peripheral Interfaces
+ * @defgroup HAL_ABSTRACT_PERIPHERALS Peripheral Interfaces
* @brief HAL Abstract Peripheral Interfaces.
*
- * @ingroup HAL_INTERFACES
+ * @ingroup IO
*/
diff --git a/os/hal/dox/mfs.dox b/os/hal/dox/mfs.dox
index 359cb2f9e..88b80468a 100644
--- a/os/hal/dox/mfs.dox
+++ b/os/hal/dox/mfs.dox
@@ -15,7 +15,7 @@
*/
/**
- * @defgroup MFS Managed Flash Storage Driver
+ * @defgroup HAL_MFS Managed Flash Storage Driver
* @brief Managed Flash Storage Driver.
* @details This module implements a managed flash storage able to store
* a finite number of variable-size records. Records are retrieved
diff --git a/os/hal/dox/norflash.dox b/os/hal/dox/norflash.dox
index 1cc4a758a..2196363bd 100644
--- a/os/hal/dox/norflash.dox
+++ b/os/hal/dox/norflash.dox
@@ -15,9 +15,10 @@
*/
/**
- * @defgroup NOR_FLASH Abstract NOR Flash Class
- * @brief Generic NOR Flash interface.
- * @details This module implements a generic class for NOR Flash devices.
+ * @defgroup HAL_SERIAL_NOR Serial NOR Flash Driver
+ * @brief Serial NOR Flash driver.
+ * @details This module implements a generic driver for serial NOR Flash
+ * devices.
*
* @section flash_1 Driver State Machine
* The flash driver implements a state machine internally, not all the driver
@@ -53,23 +54,5 @@
}
* @enddot
*
- * @section flash_2 Flash Operations.
- * This driver abstracts a generic PWM timer composed of:
- * - A clock prescaler.
- * - A main up counter.
- * - A comparator register that resets the main counter to zero when the limit
- * is reached. An optional callback can be generated when this happens.
- * - An array of @p PWM_CHANNELS PWM channels, each channel has an output,
- * a comparator and is able to invoke an optional callback when a comparator
- * match with the main counter happens.
- * .
- * A PWM channel output can be in two different states:
- * - <b>IDLE</b>, when the channel is disabled or after a match occurred.
- * - <b>ACTIVE</b>, when the channel is enabled and a match didn't occur yet
- * in the current PWM cycle.
- * .
- * Note that the two states can be associated to both logical zero or one in
- * the @p PWMChannelConfig structure.
- *
- * @ingroup HAL_INTERFACES
+ * @ingroup HAL_COMPLEX_DRIVERS
*/