Pred

SCPI Commands :

[SOURce<HW>]:BB:NFC:PRED:CNFMarker
[SOURce<HW>]:BB:NFC:PRED:SEQuence
class PredCls[source]

Pred commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_cnf_marker() bool[source]
# SCPI: [SOURce<HW>]:BB:NFC:PRED:CNFMarker
value: bool = driver.source.bb.nfc.pred.get_cnf_marker()

If enabled marker 1 is positioned after the first idle.

return

conf: 1| ON| 0| OFF

get_sequence() RsSmbv.enums.NfcPredef[source]
# SCPI: [SOURce<HW>]:BB:NFC:PRED:SEQuence
value: enums.NfcPredef = driver.source.bb.nfc.pred.get_sequence()

Available only for ‘Transmission Mode > Poll’ and ‘Transmission Mode > PCD to PICC’. Selects a predefined sequence.

return

sequence: FPS| BPA| BPS| APA| APS FPS Predefined NFC-F sequence with the elements: IDLE, SENSF_REQ, IDLE, BLANK BPA Predefined NFC-B sequence with the elements: IDLE, ALL_REQ, IDLE, BLANK or a predefined EMV Type A sequence with the elements: IDLE, WUPB, IDLE, BLANK BPS Predefined NFC-B sequence with the elements: IDLE, SENS_REQ, IDLE, BLANK or a predefined EMV Type B sequence with the elements: IDLE, REQB, IDLE, BLANK APA Predefined NFC-A sequence with the elements: IDLE, ALL_REQ, IDLE, BLANK or a predefined EMV Type A sequence with the elements: IDLE, WUPA, IDLE, BLANK APS Predefined NFC-A sequence with the elements: IDLE, SENS_REQ, IDLE, BLANK or a predefined EMV Type A sequence with the elements: IDLE, REQA, IDLE, BLANK

set_cnf_marker(conf: bool) None[source]
# SCPI: [SOURce<HW>]:BB:NFC:PRED:CNFMarker
driver.source.bb.nfc.pred.set_cnf_marker(conf = False)

If enabled marker 1 is positioned after the first idle.

param conf

1| ON| 0| OFF

set_sequence(sequence: RsSmbv.enums.NfcPredef) None[source]
# SCPI: [SOURce<HW>]:BB:NFC:PRED:SEQuence
driver.source.bb.nfc.pred.set_sequence(sequence = enums.NfcPredef.APA)

Available only for ‘Transmission Mode > Poll’ and ‘Transmission Mode > PCD to PICC’. Selects a predefined sequence.

param sequence

FPS| BPA| BPS| APA| APS FPS Predefined NFC-F sequence with the elements: IDLE, SENSF_REQ, IDLE, BLANK BPA Predefined NFC-B sequence with the elements: IDLE, ALL_REQ, IDLE, BLANK or a predefined EMV Type A sequence with the elements: IDLE, WUPB, IDLE, BLANK BPS Predefined NFC-B sequence with the elements: IDLE, SENS_REQ, IDLE, BLANK or a predefined EMV Type B sequence with the elements: IDLE, REQB, IDLE, BLANK APA Predefined NFC-A sequence with the elements: IDLE, ALL_REQ, IDLE, BLANK or a predefined EMV Type A sequence with the elements: IDLE, WUPA, IDLE, BLANK APS Predefined NFC-A sequence with the elements: IDLE, SENS_REQ, IDLE, BLANK or a predefined EMV Type A sequence with the elements: IDLE, REQA, IDLE, BLANK

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.nfc.pred.clone()

Subgroups