aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/templates
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/templates')
-rw-r--r--os/hal/templates/gpt_lld.h3
-rw-r--r--os/hal/templates/icu_lld.h3
-rw-r--r--os/hal/templates/usb_lld.h3
3 files changed, 9 insertions, 0 deletions
diff --git a/os/hal/templates/gpt_lld.h b/os/hal/templates/gpt_lld.h
index fa1e7e478..4053c9b7a 100644
--- a/os/hal/templates/gpt_lld.h
+++ b/os/hal/templates/gpt_lld.h
@@ -100,6 +100,9 @@ struct GPTDriver {
* @brief Current configuration data.
*/
const GPTConfig *config;
+#if defined(GPT_DRIVER_EXT_FIELDS)
+ GPT_DRIVER_EXT_FIELDS
+#endif
/* End of the mandatory fields.*/
};
diff --git a/os/hal/templates/icu_lld.h b/os/hal/templates/icu_lld.h
index b0debb2b9..68ec93df6 100644
--- a/os/hal/templates/icu_lld.h
+++ b/os/hal/templates/icu_lld.h
@@ -104,6 +104,9 @@ struct ICUDriver {
* @brief Current configuration data.
*/
const ICUConfig *config;
+#if defined(ICU_DRIVER_EXT_FIELDS)
+ ICU_DRIVER_EXT_FIELDS
+#endif
/* End of the mandatory fields.*/
};
diff --git a/os/hal/templates/usb_lld.h b/os/hal/templates/usb_lld.h
index 225f3ab9f..5a41c1c05 100644
--- a/os/hal/templates/usb_lld.h
+++ b/os/hal/templates/usb_lld.h
@@ -212,6 +212,9 @@ struct USBDriver {
* @brief Current USB device configuration.
*/
uint8_t configuration;
+#if defined(USB_DRIVER_EXT_FIELDS)
+ USB_DRIVER_EXT_FIELDS
+#endif
/* End of the mandatory fields.*/
};