From 77f4371cd18a67e0eea779f1a8f043a269626686 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 4 Oct 2020 19:39:22 +0200 Subject: [PATCH] plot --- armsrc/iso15693.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/armsrc/iso15693.c b/armsrc/iso15693.c index 3125f90bf..f3c3494a9 100644 --- a/armsrc/iso15693.c +++ b/armsrc/iso15693.c @@ -1479,6 +1479,7 @@ int SendDataTag(uint8_t *send, int sendlen, bool init, bool speed_fast, uint8_t if (recv != NULL) { res = GetIso15693AnswerFromTag(recv, max_recv_len, timeout, eof_time); } + FpgaDisableTracing(); return res; } @@ -1494,6 +1495,7 @@ int SendDataTagEOF(uint8_t *recv, uint16_t max_recv_len, uint32_t start_time, ui if (recv != NULL) { res = GetIso15693AnswerFromTag(recv, max_recv_len, timeout, eof_time); } + FpgaDisableTracing(); return res; }