diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-02-11 15:11:45 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-02-11 15:11:45 +0000 |
commit | 0b5d6d6f77d0869cfdf4c793bc3e831557902067 (patch) | |
tree | 1ce0bb7ae17017ad80447660c24de91795ceb563 /os/hal/src | |
parent | 548ecb2c4bc326c26a91e3c17933ce893f78b4fc (diff) | |
download | ChibiOS-0b5d6d6f77d0869cfdf4c793bc3e831557902067.tar.gz ChibiOS-0b5d6d6f77d0869cfdf4c793bc3e831557902067.tar.bz2 ChibiOS-0b5d6d6f77d0869cfdf4c793bc3e831557902067.zip |
Last minute fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11481 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src')
-rw-r--r-- | os/hal/src/hal_crypto.c | 2 | ||||
-rw-r--r-- | os/hal/src/hal_pal.c | 9 |
2 files changed, 8 insertions, 3 deletions
diff --git a/os/hal/src/hal_crypto.c b/os/hal/src/hal_crypto.c index 9f38d5369..5ab286ecd 100644 --- a/os/hal/src/hal_crypto.c +++ b/os/hal/src/hal_crypto.c @@ -1118,7 +1118,7 @@ cryerror_t cryDecryptDES_CBC(CRYDriver *cryp, /**
* @brief Hash using SHA1.
- * @NOTE Use of this algorithm is not recommended because proven weak.
+ * @note Use of this algorithm is not recommended because proven weak.
*
* @param[in] cryp pointer to the @p CRYDriver object
* @param[in] size size of input buffer
diff --git a/os/hal/src/hal_pal.c b/os/hal/src/hal_pal.c index 573ca2ff8..1f2ced277 100644 --- a/os/hal/src/hal_pal.c +++ b/os/hal/src/hal_pal.c @@ -123,7 +123,7 @@ void palSetBusMode(IOBus *bus, iomode_t mode) { *
* @param[in] port port identifier
* @param[in] pad pad number within the port
- * @param[in] callback event callback function
+ * @param[in] cb event callback function
* @param[in] arg callback argument
*
* @api
@@ -140,7 +140,7 @@ void palSetPadCallbackI(ioportid_t port, iopadid_t pad, * @brief Associates a callback to a line.
*
* @param[in] line line identifier
- * @param[in] callback event callback function
+ * @param[in] cb event callback function
* @param[in] arg callback argument
*
* @api
@@ -159,6 +159,11 @@ void palSetLineCallbackI(ioline_t line, palcallback_t cb, void *arg) { *
* @param[in] port port identifier
* @param[in] pad pad number within the port
+ * @param[in] timeout the number of ticks before the operation timeouts,
+ * the following special values are allowed:
+ * - @a TIME_IMMEDIATE immediate timeout.
+ * - @a TIME_INFINITE no timeout.
+ * .
* @returns The operation state.
* @retval MSG_OK if an edge has been detected.
* @retval MSG_TIMEOUT if a timeout occurred before an edge could be detected.
|