ST25 NFC/RFID tags and readers

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! X-CUBE_NFC7: no NDEF seen by the phone

I used the I2C example in X-CUBE-NFC7 to write "hello the world" and wanted to read the data from the phone, but according to the above code the phone does not show any NDEF information, what should I do?/* USER CODE BEGIN Header *//** **************...

Resolved! CR95HF reader --> Tmoney Card info

I use CR95HF for charging type electric vehicle charger. I'm going to use the T-money card for RFID.The information you need should be able to read T-money Card number, month, day, and balance check. I need to use CR95HF, so could you share a command...

DJeon.4 by Associate II
  • 697 Views
  • 4 replies
  • 1 kudos

Resolved! ST25DV64KC NDEF text reading via I2C error

Hello,I am trying to build a NFC project that receives 3 different ADC data from the MCU side (stm32l031k5) to the mobile phone.However, there is a critical problem that:NFC reading is too slow. There is a term like few seconds to read new text tag.T...

WPARK.1 by Associate II
  • 585 Views
  • 3 replies
  • 0 kudos

Resolved! Using I2C in x-cube-nfc7 to write a string like this why can't you read anything

int main(void){ /* USER CODE BEGIN 1 */ uint8_t nfc_data[32] = {0};   const uint16_t nfc_addr = 0x10; // NFC存储区的起始地�?�   const uint16_t nfc_size = sizeof(nfc_data); // NFC存储区的大�?   char* write_data = "Hello, world!"; // 待写入的字符串   char read_data[3...