*/ uint8_tASXX::storeFinger(uint8_t bufferId, uint16_t pageId) { uint8_t content[] = {0x01,0x00,0x06,0x06,0x00,0x00,0x00 }; content[4] = bufferId; content[5] = (uint8_t)(pageId >> 8); content[6] = (uint8_t)pageId; sendCmd(6, content); uint8_t r = getReply(content); if (r == 1) return content[0]; return r; } /*
|