1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/efm32: clarify units in USB FIFO size definitions

Since the USB OTG FIFO sizes are partly defined in 32-bit words and partly in bytes, the documentation of the of the USB OTG FIFO size definitions is extended by the respective unit.
This commit is contained in:
Gunar Schorcht 2023-02-24 10:57:11 +01:00
parent 0c9eb535eb
commit 9f894bc1ac

View File

@ -49,14 +49,14 @@
#define DWC2_USB_OTG_FS_NUM_EP (7)
/**
* @brief Size of the FIFO shared by all USB OTG FS OUT endpoints
* @brief Size of the FIFO shared by all USB OTG FS OUT endpoints in 32-bit words
*/
#ifndef DWC2_USB_OTG_FS_RX_FIFO_SIZE
#define DWC2_USB_OTG_FS_RX_FIFO_SIZE (128U)
#endif
/**
* @brief Total size of the FIFO
* @brief Total size of the FIFO in bytes
*/
#define DWC2_USB_OTG_FS_TOTAL_FIFO_SIZE (2048)