diff --git a/main/driver_USB.html b/main/driver_USB.html
index f94719e..88ebf46 100644
--- a/main/driver_USB.html
+++ b/main/driver_USB.html
@@ -127,20 +127,24 @@
Configuration
- USB Host Controller 0:
-- Driver number: Specifies the exported Driver_USBH# instance
-- EHCI registers base address: Specifies the absolute address at which EHCI controller registers are located
-- Relocated EHCI communication area: Specifies if the communication area is located at a specific address (via the linker script)
-- EHCI communication area section name: Specifies the section name of the EHCI communication area
+- Export control block Driver_USBH#: Specifies the exported driver control block number.
+- EHCI Registers base address: Specifies the absolute address at which EHCI controller registers are located.
+- Relocate EHCI Communication Area: Specifies if the communication area is located at a specific address (via the linker script):
+- Section name: Specifies the section name of the EHCI communication area (for positioning via the linker script).
+
+
- USB Host Controller 1 (can be enabled/disabled):
-- Driver number: Specifies the exported Driver_USBH# instance
-- EHCI registers base address: Specifies the absolute address at which EHCI controller registers are located
-- Relocated EHCI communication area: Specifies if the communication area is located at a specific address (via the linker script)
-- EHCI communication area section name: Specifies the section name of the EHCI communication area
+- Export control block Driver_USBH#: Specifies the exported driver control block number.
+- EHCI Registers base address: Specifies the absolute address at which EHCI controller registers are located.
+- Relocate EHCI Communication Area: Specifies if the communication area is located at a specific address (via the linker script):
+- Section name: Specifies the section name of the EHCI communication area (for positioning via the linker script).
+
+
-- USBH_EHCI_MAX_PIPES: Specifies maximum number of pipes that the driver will support (per controller)
+- Maximum number of Pipes (per controller): Specifies the maximum number of pipes that the driver will support (per controller).
OHCI
@@ -151,20 +155,24 @@
Configuration
- USB Host Controller 0:
-- Driver number: Specifies the exported Driver_USBH# instance
-- OHCI registers base address: Specifies the absolute address at which OHCI controller registers are located
-- Relocated OHCI communication area (HCCA): Specifies if the communication area is located at a specific address (via the linker script)
-- OHCI communication area section name: Specifies the section name of the OHCI communication area
+- Export control block Driver_USBH#: Specifies the exported driver control block number.
+- OHCI Registers base address: Specifies the absolute address at which OHCI controller registers are located.
+- Relocate OHCI Communication Area (HCCA): Specifies if the communication area is located at a specific address (via the linker script):
+- Section name: Specifies the section name of the OHCI communication area (for positioning via the linker script).
+
+
- USB Host Controller 1 (can be enabled/disabled):
-- Driver number: Specifies the exported Driver_USBH# instance
-- OHCI registers base address: Specifies the absolute address at which OHCI controller registers are located
-- Relocated OHCI communication area (HCCA): Specifies if the communication area is located at a specific address (via the linker script)
-- OHCI communication area section name: Specifies the section name of the OHCI communication area
+- Export control block Driver_USBH#: Specifies the exported driver control block number.
+- OHCI Registers base address: Specifies the absolute address at which OHCI controller registers are located.
+- Relocate OHCI Communication Area (HCCA): Specifies if the communication area is located at a specific address (via the linker script):
+- Section name: Specifies the section name of the OHCI communication area (for positioning via the linker script).
+
+
-- USBH_OHCI_MAX_PIPES: Specifies maximum number of pipes that the driver will support (per controller)
+- Maximum number of Pipes (per controller): Specifies the maximum number of pipes that the driver will support (per controller).
diff --git a/main/footer.js b/main/footer.js
index 7f52b26..dfec9fc 100644
--- a/main/footer.js
+++ b/main/footer.js
@@ -1,7 +1,7 @@
function writeHeader() {
- document.write('Version 2.8.1-dev4');
+ document.write('Version 2.8.1-dev5');
};
function writeFooter() {
- document.write('Generated on Thu May 16 2024 11:19:00 for CMSIS-Driver Implementations 2.8.1-dev4+g0bf6d7d. Copyright © 2024 Arm Limited (or its affiliates). All rights reserved.');
+ document.write('Generated on Tue May 28 2024 05:18:09 for CMSIS-Driver Implementations 2.8.1-dev5+g55860a7. Copyright © 2024 Arm Limited (or its affiliates). All rights reserved.');
};
diff --git a/version.js b/version.js
index f293d12..9b56977 100644
--- a/version.js
+++ b/version.js
@@ -1,6 +1,6 @@
//--- list of versions ---
const versions = {
- "main": "2.8.1-dev4",
+ "main": "2.8.1-dev5",
"latest": "2.8.0",
"2.7.2": "2.7.2"
}