Remove printf

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos 2024-11-06 23:42:55 +01:00
parent 5f27c0d75d
commit f38e0619b8
No known key found for this signature in database
GPG key ID: C0095B7870A4CCD3

View file

@ -56,7 +56,6 @@ int phy_unserialize_data(const uint8_t *data, uint16_t len, phy_data_t *phy) {
memset(phy, 0, sizeof(phy_data_t));
const uint8_t *p = data;
while (p < data + len) {
printf("TAG %x\n",*p);
switch (*p++) {
case PHY_VIDPID:
memcpy(phy->vidpid, p, 4);