aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/LLD/CANv1/hal_can_lld.c
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-02-07 07:58:38 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-02-07 07:58:38 +0000
commitaf22a2dcaf9d9750ba5604d4ef9a82d0540a0c20 (patch)
tree753da72db551e5906d46e0a00b6ec2c38ff42909 /os/hal/ports/STM32/LLD/CANv1/hal_can_lld.c
parent47a8438f5b7e146294a666a3e3ed3151fba8e9b9 (diff)
downloadChibiOS-af22a2dcaf9d9750ba5604d4ef9a82d0540a0c20.tar.gz
ChibiOS-af22a2dcaf9d9750ba5604d4ef9a82d0540a0c20.tar.bz2
ChibiOS-af22a2dcaf9d9750ba5604d4ef9a82d0540a0c20.zip
Documentation-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10092 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/LLD/CANv1/hal_can_lld.c')
-rw-r--r--os/hal/ports/STM32/LLD/CANv1/hal_can_lld.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/LLD/CANv1/hal_can_lld.c b/os/hal/ports/STM32/LLD/CANv1/hal_can_lld.c
index 309a32f31..09dbac7f0 100644
--- a/os/hal/ports/STM32/LLD/CANv1/hal_can_lld.c
+++ b/os/hal/ports/STM32/LLD/CANv1/hal_can_lld.c
@@ -68,6 +68,7 @@ CANDriver CAND3;
/**
* @brief Programs the filters of CAN 1 and CAN 2.
*
+ * @param[in] canp pointer to the @p CANDriver object
* @param[in] can2sb number of the first filter assigned to CAN2
* @param[in] num number of entries in the filters array, if zero then
* a default filter is programmed
@@ -1006,6 +1007,7 @@ void can_lld_wakeup(CANDriver *canp) {
* @brief Programs the filters.
* @note This is an STM32-specific API.
*
+ * @param[in] canp pointer to the @p CANDriver object
* @param[in] can2sb number of the first filter assigned to CAN2
* @param[in] num number of entries in the filters array, if zero then
* a default filter is programmed
@@ -1014,7 +1016,8 @@ void can_lld_wakeup(CANDriver *canp) {
*
* @api
*/
-void canSTM32SetFilters(CANDriver *canp, uint32_t can2sb, uint32_t num, const CANFilter *cfp) {
+void canSTM32SetFilters(CANDriver *canp, uint32_t can2sb,
+ uint32_t num, const CANFilter *cfp) {
#if STM32_CAN_USE_CAN2
osalDbgCheck((can2sb <= STM32_CAN_MAX_FILTERS) &&