Question about Smartcard Acquisition

I’m using a different smart card now. This one interacts better with the victim board. However, I’m getting this ACK error Status too small. No matter what I change the value of ins, I still get the error. What am I doing wrong does code only except 6C as a value for ins?

[code]
x = self.hw.sendAPDU(0x80,0x02,0x03,0x04)

ATR: 3b 68 00 00 00 73 c8 40 11 00 90 00
Correct App Selected
ACK Error: 2 != 6c
Exception caught: Status too small: 1, 07
File “c:\chipwhisperer-0.10rc1\software\chipwhisperer\capture\targets\SmartCard.py”, line 195, in sendAPDU
raise IOError(“Status too small: %d, %s” % (len(stat), " “.join([”%02x"%ord(t) for t in stat])))
IOError: Status too small: 1, 07[/code]

[code]
x = self.hw.sendAPDU(0x80,0x10,0x03,0x04)

ATR: 3b 68 00 00 00 73 c8 40 11 00 90 00
Correct App Selected
ACK Error: 10 != 6c
Exception caught: Status too small: 1, 07
File “c:\chipwhisperer-0.10rc1\software\chipwhisperer\capture\targets\SmartCard.py”, line 195, in sendAPDU
raise IOError(“Status too small: %d, %s” % (len(stat), " “.join([”%02x"%ord(t) for t in stat])))
IOError: Status too small: 1, 07[/code]

[code]
x = self.hw.sendAPDU(0x80,0x6C,0x03,0x04)

ATR: 3b 68 00 00 00 73 c8 40 11 00 90 00
Correct App Selected
Exception caught: Invalid Status: 90[/code]