Hello,
I'm working on the NHS3100SENSORBOARD.
I was trying a simple program : I write an NDEF message in the shared NFC memory. Then i tag the board with a smartphone and read the message. When it's done the nhs3100 go in deepsleep.
It work well but when i replace deep sleep by deep power down mode the nhs look like it wake up when there is an NFC detection but the tag is empty.
My main code :
int main(void)
{
Board_Init();
NDEFT2T_Init();
TempinText();
Chip_GPIO_SetPinDIR(NSS_GPIO_BASE,NSS_IOCON,IOCON_PIO0_8,true);
for (;;)
{
if (sFieldPresent)
{
GenerateNdef_TextMime();
}
while(sFieldPresent)
{
}
Chip_PMU_PowerMode_EnterDeepPowerDown(true);
}
return 0;
}
I would be grateful if someone could help me.
Thanks you for your time,
Yvan