|
|
@@ -469,6 +469,9 @@ uint32_t HAL_EXTI_GetPending(EXTI_HandleTypeDef *hexti, uint32_t Edge)
|
|
|
uint32_t linepos;
|
|
|
uint32_t maskline;
|
|
|
|
|
|
+ /* Prevent unused argument(s) compilation warning */
|
|
|
+ UNUSED(Edge);
|
|
|
+
|
|
|
/* Check parameters */
|
|
|
assert_param(IS_EXTI_LINE(hexti->Line));
|
|
|
assert_param(IS_EXTI_CONFIG_LINE(hexti->Line));
|
|
|
@@ -496,6 +499,9 @@ void HAL_EXTI_ClearPending(EXTI_HandleTypeDef *hexti, uint32_t Edge)
|
|
|
{
|
|
|
uint32_t maskline;
|
|
|
|
|
|
+ /* Prevent unused argument(s) compilation warning */
|
|
|
+ UNUSED(Edge);
|
|
|
+
|
|
|
/* Check parameters */
|
|
|
assert_param(IS_EXTI_LINE(hexti->Line));
|
|
|
assert_param(IS_EXTI_CONFIG_LINE(hexti->Line));
|