I am using ZPL printer to print the base64 decoded string.
For small decoded string it is printing the receipt, for multiline base64 decoded string I am getting error.
Delegate Method :
func peripheral(_ peripheral: CBPeripheral, didWriteValueFor characteristic: CBCharacteristic, error: Error?) {
if error != nil {
print(error?.localizedDescription)
}
}
I am getting following error when print(error?.localizedDescription)
Error :
The prepare queue is full
Thanks in advance.