From 576af25b0d618ebc0e931811afb0d8abef9694d4 Mon Sep 17 00:00:00 2001 From: Arbi Gunbardhi Date: Thu, 30 Mar 2023 19:11:50 +0200 Subject: [PATCH] Fixed names in the examples --- .../X_NUCLEO_NFC04A1_HelloWorld.ino | 8 ++++---- .../X_NUCLEO_NFC04A1_SimpleWrite.ino | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/X_NUCLEO_NFC04A1_HelloWorld/X_NUCLEO_NFC04A1_HelloWorld.ino b/examples/X_NUCLEO_NFC04A1_HelloWorld/X_NUCLEO_NFC04A1_HelloWorld.ino index 2c9d239..1f25f4f 100755 --- a/examples/X_NUCLEO_NFC04A1_HelloWorld/X_NUCLEO_NFC04A1_HelloWorld.ino +++ b/examples/X_NUCLEO_NFC04A1_HelloWorld/X_NUCLEO_NFC04A1_HelloWorld.ino @@ -1,11 +1,11 @@ /** ****************************************************************************** - @file X_NUCLEO_NFC07A1_HelloWorld.ino + @file X_NUCLEO_NFC04A1_HelloWorld.ino @author STMicroelectronics @version V1.0.0 @date 22 November 2017 @brief Arduino test application for the STMicrolectronics - X-NUCLEO-NFC07A1. NFC tag based on ST25DV device. + X-NUCLEO-NFC04A1. NFC tag based on ST25DV device. This application makes use of C++ classes obtained from the C components' drivers. ****************************************************************************** @@ -59,10 +59,10 @@ ****************************************************************************** */ -#include "x_nucleo_nfc07.h" +#include "x_nucleo_nfc04.h" #define DEV_I2C Wire -X_Nucleo_NFC07 Nfc(12, -1, &DEV_I2C); +X_Nucleo_NFC04 Nfc(12, -1, &DEV_I2C); void setup() { const char uri_write_message[] = "st.com/st25"; // Uri message to write in the tag diff --git a/examples/X_NUCLEO_NFC04A1_SimpleWrite/X_NUCLEO_NFC04A1_SimpleWrite.ino b/examples/X_NUCLEO_NFC04A1_SimpleWrite/X_NUCLEO_NFC04A1_SimpleWrite.ino index 7c6b529..ff9dc5f 100755 --- a/examples/X_NUCLEO_NFC04A1_SimpleWrite/X_NUCLEO_NFC04A1_SimpleWrite.ino +++ b/examples/X_NUCLEO_NFC04A1_SimpleWrite/X_NUCLEO_NFC04A1_SimpleWrite.ino @@ -1,11 +1,11 @@ /** ****************************************************************************** - @file X_NUCLEO_NFC07A1_SimpleWrite.ino + @file X_NUCLEO_NFC04A1_SimpleWrite.ino @author STMicroelectronics @version V1.0.0 @date 22 November 2017 @brief Arduino test application for the STMicrolectronics - X-NUCLEO-NFC07A1. NFC tag based on ST25DV device. + X-NUCLEO-NFC04A1. NFC tag based on ST25DV device. This application makes use of C++ classes obtained from the C components' drivers. ****************************************************************************** @@ -57,11 +57,11 @@ ****************************************************************************** */ -#include "x_nucleo_nfc07.h" +#include "x_nucleo_nfc04.h" #define SerialPort Serial #define DEV_I2C Wire -X_Nucleo_NFC07 Nfc(12, -1, &DEV_I2C); +X_Nucleo_NFC04 Nfc(12, -1, &DEV_I2C); void setup() { const char uri_write_message[] = "st.com/st25"; // Uri message to write in the tag