Question about NDEF writing delay with NFC04A1!
Hi, i'm using NFC04A1 with NUCLEO-F401RE board, and im very new on this.
Trying to send NDEF texts (88bytes) with <1sec period ,but i cannot make it short less than 1.2sec.
Here's the while loop code with 1.2sec period.
while (1)
{
NFC04A1_LED_ON( BLUE_LED );
while( NDEF_WriteText(myMessage) != NDEF_OK );
NFC04A1_LED_OFF( BLUE_LED );
HAL_Delay(600);
HAL_GPIO_TogglePin(GPIOA,GPIO_PIN_5);
}
I have tried many times with various HAL_Delay value and 600ms is the best for now.
Can't it be shorter?
Please give me some advices.
Thanks.
