MFRC630 icon indicating copy to clipboard operation
MFRC630 copied to clipboard

How do I update the key of the buffer

Open chcmq opened this issue 2 years ago • 1 comments

// Use the manufacturer default key... uint8_t FFkey[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};

  mfrc630_cmd_load_key(FFkey);  // load into the key buffer

FFkey I need to validate the first key before I update it, but I keep calling mfrc630_cmd_load_key(FFkey); This function will fail to verify success, please tell me how to correctly repeat call it

chcmq avatar May 24 '23 10:05 chcmq

I'm not sure I understand, the mrfc630_cmd_load_key function is pretty boring, it just writes the key to the fifo and then sends a command, if you need to send another key you just do that again?

You could also modify the example function to accept another key if you need something else than the 0xFF default key?

iwanders avatar May 24 '23 22:05 iwanders