1
0
mirror of synced 2024-11-23 23:50:56 +01:00

fix some name error

This commit is contained in:
QHPaeek 2024-09-14 12:05:15 +08:00
parent ebb2565ce4
commit 4c2d0b2f04

View File

@ -400,7 +400,7 @@ void nfc_felica_through() {
case FelicaWriteWithoutEncryptData:
{
uint16_t serviceCodeList = req.serviceCodeList[1] << 8 | req.serviceCodeList[0];
uint16_t blockList = (uint16_t)(req.blockList_write[0][0] << 8 | req.blockList_write[0][1]);
uint16_t blockList = (uint16_t)(req.blockList[0][0] << 8 | req.blockList[0][1]);
nfc.felica_WriteWithoutEncryption(1, &serviceCodeList, 1, &blockList, &req.blockData);
res_init(0x0C);
res.RW_status[0] = 0;