From: lottaviano Date: Fri, 25 Feb 2011 08:25:16 +0000 (+0000) Subject: dox: Fix nightly test warnings. X-Git-Tag: 2.7.0~240 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=183859226be37f23232f080b9e7457113a0faeb7;p=bertos.git dox: Fix nightly test warnings. The bug mentioned in the comment is not reproducible with doxygen v. 1.7.1 and 1.7.3. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4726 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/cpu/cortex-m3/drv/usb_stm32.c b/bertos/cpu/cortex-m3/drv/usb_stm32.c index ac3f55fa..46069ff0 100644 --- a/bertos/cpu/cortex-m3/drv/usb_stm32.c +++ b/bertos/cpu/cortex-m3/drv/usb_stm32.c @@ -148,15 +148,12 @@ static stm32_UsbMemSlot *mem_use; static stm32_UsbMemSlot memory_buffer[EP_MAX_NUM]; /* Endpoint TX and RX buffers */ -/// \cond -/* XXX: use the empty cond section to silent a buggy doxygen warning */ static size_t rx_size, tx_size; #define EP_BUFFER_SIZE _MIN(CONFIG_USB_BUFSIZE, USB_XFER_MAX_SIZE) STATIC_ASSERT(!(EP_BUFFER_SIZE & 0x03)); static uint8_t ep_buffer[EP_MAX_NUM][EP_BUFFER_SIZE] ALIGNED(4); -/// \endcond static Event usb_event_done[EP_MAX_SLOTS];