From 2891f7d645c4be187ac96ee4011207531d25c34a Mon Sep 17 00:00:00 2001 From: gdisirio Date: Mon, 4 Oct 2010 17:16:18 +0000 Subject: Documentation improvements, fixed a small error in the STM32 serial driver. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2234 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/AT91SAM7/serial_lld.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'os/hal/platforms/AT91SAM7/serial_lld.c') diff --git a/os/hal/platforms/AT91SAM7/serial_lld.c b/os/hal/platforms/AT91SAM7/serial_lld.c index 39e6540d4..47de0a0e6 100644 --- a/os/hal/platforms/AT91SAM7/serial_lld.c +++ b/os/hal/platforms/AT91SAM7/serial_lld.c @@ -219,6 +219,11 @@ static void notify3(void) { /*===========================================================================*/ #if USE_SAM7_USART0 || defined(__DOXYGEN__) +/** + * @brief USART0 interrupt handler. + * + * @isr + */ CH_IRQ_HANDLER(USART0IrqHandler) { CH_IRQ_PROLOGUE(); @@ -229,6 +234,11 @@ CH_IRQ_HANDLER(USART0IrqHandler) { #endif #if USE_SAM7_USART1 || defined(__DOXYGEN__) +/** + * @brief USART1 interrupt handler. + * + * @isr + */ CH_IRQ_HANDLER(USART1IrqHandler) { CH_IRQ_PROLOGUE(); @@ -247,6 +257,8 @@ CH_IRQ_HANDLER(USART1IrqHandler) { /** * @brief Low level serial driver initialization. + * + * @notapi */ void sd_lld_init(void) { @@ -291,6 +303,8 @@ void sd_lld_init(void) { * @param[in] config the architecture-dependent serial driver configuration. * If this parameter is set to @p NULL then a default * configuration is used. + * + * @notapi */ void sd_lld_start(SerialDriver *sdp, const SerialConfig *config) { @@ -325,6 +339,8 @@ void sd_lld_start(SerialDriver *sdp, const SerialConfig *config) { * interrupt vector. * * @param[in] sdp pointer to a @p SerialDriver object + * + * @notapi */ void sd_lld_stop(SerialDriver *sdp) { -- cgit v1.2.3