Home
last modified time | relevance | path

Searched refs:construct_frame (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Nfc/testutils/pn532/
Dpn532.py74 LONG_PREAMBLE + self.construct_frame([SAM_CONFIGURATION, 0x01, 0x00]),
83 self.construct_frame(
101 LONG_PREAMBLE + self.construct_frame([GET_FIRMWARE_VERSION])
117 self.construct_frame([IN_LIST_PASSIVE_TARGET, 0x01, 0x00])
157 self.construct_frame([IN_LIST_PASSIVE_TARGET, 0x01, 0x03, 0x00])
167 self.send_frame(self.construct_frame([WRITE_REGISTER, 0x63, 0x3D, 0x00]))
169 self.construct_frame([IN_COMMUNICATE_THRU] + list(with_crc16a(broadcast)))
177 rsp = self.send_frame(self.construct_frame([IN_DATA_EXCHANGE] + list(data)), 5)
196 self.send_frame(self.construct_frame([RF_CONFIGURATION, 0x01, 0x02]))
198 def construct_frame(self, data): member in PN532