From 4611f05051dfe6a17fb85f801c7fca65635ed041 Mon Sep 17 00:00:00 2001 From: merlokk <807634+merlokk@users.noreply.github.com> Date: Wed, 6 Feb 2019 15:17:52 +0200 Subject: [PATCH] small fix in AMS3956 debug texts --- targets/stm32l432/src/ams.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/stm32l432/src/ams.c b/targets/stm32l432/src/ams.c index 4a7a2f7..76a256c 100644 --- a/targets/stm32l432/src/ams.c +++ b/targets/stm32l432/src/ams.c @@ -277,10 +277,10 @@ bool ams_init() uint8_t productType = ams_read_reg(AMS_REG_PRODUCT_TYPE); if (productType != 0x14) { - printf1(TAG_NFC,"Have no product type [0x%02x]. Connection error.\n", productType); + printf1(TAG_NFC, "Have no product type [0x%02x]. AMS3956 connection error.\n", productType); return false; } - printf1(TAG_NFC,"Product type 0x%02x.\n", productType); + printf1(TAG_NFC,"AMS3956 product type 0x%02x.\n", productType); // enable tunneling mode and RF configuration ams_write_reg(AMS_REG_IC_CONF2, AMS_RFCFG_EN | AMS_TUN_MOD);