From b55cdb4b99cfa2bd88f2b42e3ecfc3c686475ff7 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Tue, 20 Dec 2022 14:30:20 +0000 Subject: [PATCH] More last minute fixes. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15899 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- doc/build/hal/Doxyfile_chm | 1 + os/hal/dox/hal_buffered_serial.dox | 20 ++++++++++++++++++++ os/hal/include/hal_buffered_serial.h | 2 +- os/hal/src/hal_buffered_serial.c | 6 +++--- 4 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 os/hal/dox/hal_buffered_serial.dox diff --git a/doc/build/hal/Doxyfile_chm b/doc/build/hal/Doxyfile_chm index b43a79446..e24a4a70b 100644 --- a/doc/build/hal/Doxyfile_chm +++ b/doc/build/hal/Doxyfile_chm @@ -857,6 +857,7 @@ INPUT = ./src \ ../../../os/hal/src \ ../../../os/hal/include \ ../../../os/hal/lib/streams \ + ../../../os/hal/lib/complex/buffered_sio \ ../../../os/hal/lib/complex/mfs \ ../../../os/hal/lib/complex/serial_nor \ ../../../os/hal/templates \ diff --git a/os/hal/dox/hal_buffered_serial.dox b/os/hal/dox/hal_buffered_serial.dox new file mode 100644 index 000000000..ef34a4344 --- /dev/null +++ b/os/hal/dox/hal_buffered_serial.dox @@ -0,0 +1,20 @@ +/* + ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + +/** + * @defgroup HAL_BUFFERED_SERIAL Buffered Serial Driver + * @ingroup HAL_INNER_CODE + */ diff --git a/os/hal/include/hal_buffered_serial.h b/os/hal/include/hal_buffered_serial.h index 90aad126b..61923d716 100644 --- a/os/hal/include/hal_buffered_serial.h +++ b/os/hal/include/hal_buffered_serial.h @@ -18,7 +18,7 @@ * @file hal_buffered_serial.h * @brief Buffered Serial Driver macros and structures. * - * @addtogroup BUFFERED_SERIAL + * @addtogroup HAL_BUFFERED_SERIAL * @{ */ diff --git a/os/hal/src/hal_buffered_serial.c b/os/hal/src/hal_buffered_serial.c index 0e9f45fac..4d02ab0c5 100644 --- a/os/hal/src/hal_buffered_serial.c +++ b/os/hal/src/hal_buffered_serial.c @@ -15,10 +15,10 @@ */ /** - * @file hal_serial.c - * @brief Serial Driver code. + * @file hal_buffered_serial.h + * @brief Buffered Serial Driver code. * - * @addtogroup SERIAL + * @addtogroup HAL_BUFFERED_SERIAL * @{ */