Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2 | Rev 5 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | /** |
1 | /** |
2 | ****************************************************************************** |
2 | ****************************************************************************** |
3 | * @file stm32f1xx_hal_iwdg.c |
3 | * @file stm32f1xx_hal_iwdg.c |
4 | * @author MCD Application Team |
4 | * @author MCD Application Team |
5 | * @version V1.0.1 |
5 | * @version V1.0.4 |
6 | * @date 31-July-2015 |
6 | * @date 29-April-2016 |
7 | * @brief IWDG HAL module driver. |
7 | * @brief IWDG HAL module driver. |
8 | * This file provides firmware functions to manage the following |
8 | * This file provides firmware functions to manage the following |
9 | * functionalities of the Independent Watchdog (IWDG) peripheral: |
9 | * functionalities of the Independent Watchdog (IWDG) peripheral: |
10 | * + Initialization and Configuration functions |
10 | * + Initialization and Configuration functions |
11 | * + IO operation functions |
11 | * + IO operation functions |
Line 65... | Line 65... | ||
65 | 65 | ||
66 | @endverbatim |
66 | @endverbatim |
67 | ****************************************************************************** |
67 | ****************************************************************************** |
68 | * @attention |
68 | * @attention |
69 | * |
69 | * |
70 | * <h2><center>© COPYRIGHT(c) 2015 STMicroelectronics</center></h2> |
70 | * <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2> |
71 | * |
71 | * |
72 | * Redistribution and use in source and binary forms, with or without modification, |
72 | * Redistribution and use in source and binary forms, with or without modification, |
73 | * are permitted provided that the following conditions are met: |
73 | * are permitted provided that the following conditions are met: |
74 | * 1. Redistributions of source code must retain the above copyright notice, |
74 | * 1. Redistributions of source code must retain the above copyright notice, |
75 | * this list of conditions and the following disclaimer. |
75 | * this list of conditions and the following disclaimer. |
Line 206... | Line 206... | ||
206 | * the configuration information for the specified IWDG module. |
206 | * the configuration information for the specified IWDG module. |
207 | * @retval None |
207 | * @retval None |
208 | */ |
208 | */ |
209 | __weak void HAL_IWDG_MspInit(IWDG_HandleTypeDef *hiwdg) |
209 | __weak void HAL_IWDG_MspInit(IWDG_HandleTypeDef *hiwdg) |
210 | { |
210 | { |
- | 211 | /* Prevent unused argument(s) compilation warning */ |
|
- | 212 | UNUSED(hiwdg); |
|
211 | /* NOTE : This function Should not be modified, when the callback is needed, |
213 | /* NOTE : This function Should not be modified, when the callback is needed, |
212 | the HAL_IWDG_MspInit could be implemented in the user file |
214 | the HAL_IWDG_MspInit could be implemented in the user file |
213 | */ |
215 | */ |
214 | } |
216 | } |
215 | 217 |