Complete mbed library/workspace for HelloWorld_NFC02A1

Dependencies:   NDefLib X_NUCLEO_NFC02A1 mbed

Fork of HelloWorld_NFC02A1 by ST Expansion SW Team

X-NUCLEO-NFC02A1 Dynamic NFC Tag Expansion Board Firmware Package

Introduction

This firmware package includes Components Device Drivers, Board Support Package and example applications for STMicroelectronics X-NUCLEO-NFC02A1 Dynamic NFC Tag Expansion Board based on M24LR.

Example Application

This is just a simple "hello world" style program for the X-NUCLEO-NFC02A1 Dynamic NFC Tag Expansion Board. The program writes a URI link to the M24LR dynamic tag using the synchronous programming model. It then reads back the URI from the tag to display it on terminal. The URI can also be retrieved from an NFC enabled smartphone/tablet.

Revision:
1:11ae12d41082
Parent:
0:892175366555
--- a/X_NUCLEO_NFC02A1/Interfaces/X_NUCLEO_NFC02A1.h	Wed Jul 27 09:25:33 2016 +0000
+++ b/X_NUCLEO_NFC02A1/Interfaces/X_NUCLEO_NFC02A1.h	Tue Aug 30 09:18:50 2016 +0000
@@ -1,15 +1,15 @@
 /**
   ******************************************************************************
   * @file       X_NUCLEO_NFC02A1.cpp
-  * @author  	ST Central Labs
-  * @version 	V1.0.0
-  * @date       05 Nov 2015
+  * @author  	AMG Central Lab
+  * @version 	1.0.0
+  * @date       30 Aug 2016
   * @brief      Singleton class that controls all the electronics inside the 
   * 			X_NUCLEO_NFC02A1 expansion board.
   ******************************************************************************
   * @attention
   *
-  * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
+  * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
   *
   * Redistribution and use in source and binary forms, with or without modification,
   * are permitted provided that the following conditions are met:
@@ -134,8 +134,8 @@
 		return mM24LR;
 	}
         
-        M24LR* getM24LR() {
-		return &mM24LR;
+        M24LR& getM24LR() {
+		return mM24LR;
 	}
 
 	virtual ~X_NUCLEO_NFC02A1() {
@@ -150,4 +150,3 @@
 
 };
 #endif /* X_NUCLEO_NFC02A1_H_ */
-