emsec / ChameleonMini

The ChameleonMini is a versatile contactless smartcard emulator compliant to NFC. The ChameleonMini was developed by https://kasper-oswald.de. The device is available at https://shop.kasper.it. For further information see the Getting Started Page https://rawgit.com/emsec/ChameleonMini/master/Doc/Doxygen/html/_page__getting_started.html or the Wiki tab above.
Other
1.72k stars 391 forks source link

MIFARE DESFire EV1 8K #342

Closed sina6611 closed 8 months ago

sina6611 commented 9 months ago

Hi Every one I am trying to set the configuration of the Chameleon Mini to MIFARE DESFire EV1 8K, but I receive a message saying "invalid parameter." I have loaded the latest firmware version, but this configuration does not have a parameter for MIFARE DESFire EV1 8K. Does anyone know how I can fix this?

spankywetfish commented 9 months ago

Given the following code from Configuration.c ...

#ifdef CONFIG_MF_DESFIRE_SUPPORT
    { .Id = CONFIG_MF_DESFIRE,                  .Text = "MF_DESFIRE" },
    { .Id = CONFIG_MF_DESFIRE_2KEV1,            .Text = "MF_DESFIRE_2KEV1" },
    { .Id = CONFIG_MF_DESFIRE_4KEV1,            .Text = "MF_DESFIRE_4KEV1" },
    { .Id = CONFIG_MF_DESFIRE_4KEV2,            .Text = "MF_DESFIRE_4KEV2" },
#endif

I think it's reasonable to assume that "MIFARE DESFire EV1 8K" isn't supported.

sina6611 commented 9 months ago

Thanks