Possible bug in ST25NFC_Embedded_Lib_ST25R3911B_1.6.0
We use ST25NFC_Embedded_Lib_ST25R3911B_1.6.0 for our current project.
There are some example inside.
In most example in stm32l4xx_hal_msp.c are the following code:
GPIO_InitStruct.Pin = GPIO_PIN_All & (!(GPIO_PIN_3));
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
But & (!(GPIO_PIN_ should be & (~(GPIO_PIN_
Please fix this in next release.
Otherwise an assert inside HAL_GPIO_Init trigger because GPIO_PIN_All & (!(GPIO_PIN_3)) results to 0
Do you ever test your code with assert_param() enabled?
