diff options
Diffstat (limited to 'os/hal/lib')
-rw-r--r-- | os/hal/lib/peripherals/flash/hal_flash.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/os/hal/lib/peripherals/flash/hal_flash.h b/os/hal/lib/peripherals/flash/hal_flash.h index e2421b5df..b540b831d 100644 --- a/os/hal/lib/peripherals/flash/hal_flash.h +++ b/os/hal/lib/peripherals/flash/hal_flash.h @@ -162,6 +162,7 @@ typedef struct { * @brief @p BaseFlash specific methods with inherited ones.
*/
#define _base_flash_methods \
+ _base_object_methods \
_base_flash_methods_alone
/**
@@ -175,10 +176,13 @@ struct BaseFlashVMT { * @brief @p BaseFlash specific data.
*/
#define _base_flash_data \
+ _base_object_data \
/* Driver state.*/ \
flash_state_t state;
/**
+ * @extends BaseObject
+ *
* @brief Base flash class.
*/
typedef struct {
|