Version numbers, documentation fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15898 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
0c7c7c0712
commit
027131e086
|
@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/HAL
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 8.0.0
|
PROJECT_NUMBER = 8.4.0
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/HAL
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 8.0.0
|
PROJECT_NUMBER = 8.4.0
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
@ -857,6 +857,7 @@ INPUT = ./src \
|
||||||
../../../os/hal/src \
|
../../../os/hal/src \
|
||||||
../../../os/hal/include \
|
../../../os/hal/include \
|
||||||
../../../os/hal/lib/streams \
|
../../../os/hal/lib/streams \
|
||||||
|
../../../os/hal/lib/complex/buffered_sio \
|
||||||
../../../os/hal/lib/complex/mfs \
|
../../../os/hal/lib/complex/mfs \
|
||||||
../../../os/hal/lib/complex/serial_nor \
|
../../../os/hal/lib/complex/serial_nor \
|
||||||
../../../os/hal/templates \
|
../../../os/hal/templates \
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
/*
|
||||||
|
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_SIO Buffered SIO Driver
|
||||||
|
* @brief Buffered SIO Driver.
|
||||||
|
* @details This module implements circular buffers and events on top
|
||||||
|
* of a SIO driver. The behavior of the legacy Serial driver
|
||||||
|
* is emulated.
|
||||||
|
*
|
||||||
|
* @ingroup HAL_COMPLEX_DRIVERS
|
||||||
|
*/
|
|
@ -347,7 +347,7 @@ struct hal_sio_driver {
|
||||||
* @brief Clears flags from the enabled events flags mask.
|
* @brief Clears flags from the enabled events flags mask.
|
||||||
*
|
*
|
||||||
* @param[in] siop pointer to the @p SIODriver object
|
* @param[in] siop pointer to the @p SIODriver object
|
||||||
* @param[in] flags enabled events mask to be cleared
|
* @param[in] mask enabled events mask to be cleared
|
||||||
*
|
*
|
||||||
* @xclass
|
* @xclass
|
||||||
*/
|
*/
|
||||||
|
@ -527,7 +527,6 @@ struct hal_sio_driver {
|
||||||
* @brief Wakes up the TX-waiting thread.
|
* @brief Wakes up the TX-waiting thread.
|
||||||
*
|
*
|
||||||
* @param[in] siop pointer to the @p SIODriver object
|
* @param[in] siop pointer to the @p SIODriver object
|
||||||
* @param[in] msg the wake up message
|
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
|
@ -541,7 +540,6 @@ struct hal_sio_driver {
|
||||||
* @brief Wakes up the TXend-waiting thread.
|
* @brief Wakes up the TXend-waiting thread.
|
||||||
*
|
*
|
||||||
* @param[in] siop pointer to the @p SIODriver object
|
* @param[in] siop pointer to the @p SIODriver object
|
||||||
* @param[in] msg the wake up message
|
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue