Possible bug in ST25NFC_Embedded_Lib_ST25R3911B_1.5.0
We use ST25NFC_Embedded_Lib_ST25R3911B_1.5.0 for our current project.
There are some example inside.
In all example in stm32l4xx_hal_msp.c are the following code:
/* Configure all GPIO port pins in Analog Input mode (floating input trigger OFF) except debug pins */
GPIO_InitStruct.Pin = GPIO_PIN_All & (!(GPIO_PIN_13|GPIO_PIN_14));
GPIO_InitStruct.Mode = GPIO_MODE_ANALOG;
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
GPIO_InitStruct.Pin = GPIO_PIN_All & (!(GPIO_PIN_3));
But & (!(GPIO_PIN_ should be & (~(GPIO_PIN_
Please fix this in next release.
