This application provides a set of demos with X-NUCLEO-NFC01A1 expansion board.

Dependencies:   NDefLib X_NUCLEO_NFC01A1 mbed

Fork of X-MBED-NFC1 by Giovanni Visentini

This application provides a set of demos with X-NUCLEO-NFC01A1 expansion board.

The available demos are:

  • SAMPLE_WRITE_URL: write a tag with the ST home page URL
  • SAMPLE_COUNT_CLICK: create a custom tag to count and report the user button clicks.
  • SAMPLE_WRITE_AND_CHANGE_ALL: write a tag with all the supported records and update the tag contents when the user button is pressed.
  • SAMPLE_LOCK_TAG_CONTENT: use the M24SR component API to set the NFC tag as read-only.

To enable the different demos comment/uncomment the SAMPLE_* macros provided in main.cpp .

Committer:
giovannivisentini
Date:
Wed Aug 31 13:58:17 2016 +0000
Revision:
15:94c98d2aa235
Parent:
14:3b604972b89f
Child:
17:d8d3d2088cac
add printf to the demos

Who changed what in which revision?

UserRevisionLine numberNew contents of line
giovannivisentini 13:685d95525ec8 1 /**
giovannivisentini 13:685d95525ec8 2 ******************************************************************************
giovannivisentini 13:685d95525ec8 3 * @file Sample_countClick.cpp
giovannivisentini 13:685d95525ec8 4 * @author ST / Central Labs
giovannivisentini 13:685d95525ec8 5 * @date 03 Dic 2015
giovannivisentini 13:685d95525ec8 6 * @brief This demo define a custom record that contains the number of time the user
giovannivisentini 13:685d95525ec8 7 * press the user button
giovannivisentini 13:685d95525ec8 8 ******************************************************************************
giovannivisentini 13:685d95525ec8 9 *
giovannivisentini 13:685d95525ec8 10 * COPYRIGHT(c) 2015 STMicroelectronics
giovannivisentini 13:685d95525ec8 11 *
giovannivisentini 13:685d95525ec8 12 * Redistribution and use in source and binary forms, with or without modification,
giovannivisentini 13:685d95525ec8 13 * are permitted provided that the following conditions are met:
giovannivisentini 13:685d95525ec8 14 * 1. Redistributions of source code must retain the above copyright notice,
giovannivisentini 13:685d95525ec8 15 * this list of conditions and the following disclaimer.
giovannivisentini 13:685d95525ec8 16 * 2. Redistributions in binary form must reproduce the above copyright notice,
giovannivisentini 13:685d95525ec8 17 * this list of conditions and the following disclaimer in the documentation
giovannivisentini 13:685d95525ec8 18 * and/or other materials provided with the distribution.
giovannivisentini 13:685d95525ec8 19 * 3. Neither the name of STMicroelectronics nor the names of its contributors
giovannivisentini 13:685d95525ec8 20 * may be used to endorse or promote products derived from this software
giovannivisentini 13:685d95525ec8 21 * without specific prior written permission.
giovannivisentini 13:685d95525ec8 22 *
giovannivisentini 13:685d95525ec8 23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
giovannivisentini 13:685d95525ec8 24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
giovannivisentini 13:685d95525ec8 25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
giovannivisentini 13:685d95525ec8 26 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
giovannivisentini 13:685d95525ec8 27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
giovannivisentini 13:685d95525ec8 28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
giovannivisentini 13:685d95525ec8 29 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
giovannivisentini 13:685d95525ec8 30 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
giovannivisentini 13:685d95525ec8 31 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
giovannivisentini 13:685d95525ec8 32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
giovannivisentini 13:685d95525ec8 33 *
giovannivisentini 13:685d95525ec8 34 ******************************************************************************
giovannivisentini 13:685d95525ec8 35 */
giovannivisentini 13:685d95525ec8 36
giovannivisentini 13:685d95525ec8 37 #include "mbed.h"
giovannivisentini 13:685d95525ec8 38
giovannivisentini 13:685d95525ec8 39 #include "X_NUCLEO_NFC01A1.h"
giovannivisentini 13:685d95525ec8 40 #include "NDefLib/NDefNfcTag.h"
giovannivisentini 13:685d95525ec8 41
giovannivisentini 13:685d95525ec8 42 #include "MyRecord.h"
giovannivisentini 13:685d95525ec8 43
giovannivisentini 13:685d95525ec8 44 /**
giovannivisentini 13:685d95525ec8 45 * class with the callback needed to update the record in the tag
giovannivisentini 13:685d95525ec8 46 */
giovannivisentini 14:3b604972b89f 47 class WriteMyRecordCallback : public NDefLib::NDefNfcTag::Callbacks {
giovannivisentini 13:685d95525ec8 48
giovannivisentini 13:685d95525ec8 49 /**
giovannivisentini 13:685d95525ec8 50 * board where change the led status
giovannivisentini 13:685d95525ec8 51 */
giovannivisentini 13:685d95525ec8 52 X_NUCLEO_NFC01A1 *mNfcNucleo;
giovannivisentini 13:685d95525ec8 53
giovannivisentini 13:685d95525ec8 54 /**
giovannivisentini 13:685d95525ec8 55 * message to write
giovannivisentini 13:685d95525ec8 56 */
giovannivisentini 13:685d95525ec8 57 NDefLib::Message &mMsg;
giovannivisentini 13:685d95525ec8 58
giovannivisentini 13:685d95525ec8 59 /**
giovannivisentini 13:685d95525ec8 60 * true if the message is wrote in the tag
giovannivisentini 13:685d95525ec8 61 */
giovannivisentini 13:685d95525ec8 62 bool mCommandFinish;
giovannivisentini 13:685d95525ec8 63
giovannivisentini 13:685d95525ec8 64 /**
giovannivisentini 13:685d95525ec8 65 * true if an update request is done while writing a tag
giovannivisentini 13:685d95525ec8 66 */
giovannivisentini 13:685d95525ec8 67 bool mRequestRefresh;
giovannivisentini 13:685d95525ec8 68
giovannivisentini 13:685d95525ec8 69
giovannivisentini 13:685d95525ec8 70 public:
giovannivisentini 13:685d95525ec8 71
giovannivisentini 13:685d95525ec8 72 /**
giovannivisentini 13:685d95525ec8 73 * build an object write an message into a nfc tag
giovannivisentini 13:685d95525ec8 74 * @param nfcNucleo board with the leds and nfc tag
giovannivisentini 13:685d95525ec8 75 * @param msg message to write
giovannivisentini 13:685d95525ec8 76 */
giovannivisentini 13:685d95525ec8 77 WriteMyRecordCallback(X_NUCLEO_NFC01A1 *nfcNucleo,NDefLib::Message &msg):
giovannivisentini 13:685d95525ec8 78 mNfcNucleo(nfcNucleo),mMsg(msg),mCommandFinish(true),
giovannivisentini 13:685d95525ec8 79 mRequestRefresh(false){}
giovannivisentini 13:685d95525ec8 80
giovannivisentini 13:685d95525ec8 81 /**
giovannivisentini 13:685d95525ec8 82 * start the write process
giovannivisentini 13:685d95525ec8 83 */
giovannivisentini 13:685d95525ec8 84 void updateMessage(){
giovannivisentini 13:685d95525ec8 85 if(mCommandFinish){
giovannivisentini 13:685d95525ec8 86 mNfcNucleo->getM24SR().getNDefTag().openSession();
giovannivisentini 13:685d95525ec8 87 }else// if it is doing something remember this request
giovannivisentini 13:685d95525ec8 88 mRequestRefresh=true;
giovannivisentini 13:685d95525ec8 89 }//updateMessage
giovannivisentini 13:685d95525ec8 90
giovannivisentini 13:685d95525ec8 91 private:
giovannivisentini 13:685d95525ec8 92
giovannivisentini 13:685d95525ec8 93 void onError(){
giovannivisentini 15:94c98d2aa235 94 printf("Error updating the tag\r\n");
giovannivisentini 13:685d95525ec8 95 mCommandFinish=false;
giovannivisentini 13:685d95525ec8 96 }
giovannivisentini 13:685d95525ec8 97
giovannivisentini 13:685d95525ec8 98 /**
giovannivisentini 13:685d95525ec8 99 * when the session is open change the led status and ask to write the message
giovannivisentini 13:685d95525ec8 100 */
giovannivisentini 13:685d95525ec8 101 virtual void onSessionOpen(NDefLib::NDefNfcTag *tag,bool success){
giovannivisentini 13:685d95525ec8 102 if(!success)
giovannivisentini 13:685d95525ec8 103 return onError();
giovannivisentini 13:685d95525ec8 104 mNfcNucleo->getLed1()=!mNfcNucleo->getLed1();
giovannivisentini 15:94c98d2aa235 105 printf("Session opened\r\n");
giovannivisentini 13:685d95525ec8 106 tag->write(mMsg);
giovannivisentini 13:685d95525ec8 107 }
giovannivisentini 13:685d95525ec8 108
giovannivisentini 13:685d95525ec8 109 /**
giovannivisentini 14:3b604972b89f 110 * if the user ask to update the value it write again the message, otherwise close the session
giovannivisentini 13:685d95525ec8 111 */
giovannivisentini 13:685d95525ec8 112 virtual void onMessageWrite(NDefLib::NDefNfcTag *tag,bool success,
giovannivisentini 13:685d95525ec8 113 const NDefLib::Message&){
giovannivisentini 13:685d95525ec8 114 if(!success)
giovannivisentini 13:685d95525ec8 115 return onError();
giovannivisentini 13:685d95525ec8 116 mNfcNucleo->getLed2()=!mNfcNucleo->getLed2();
giovannivisentini 15:94c98d2aa235 117 printf("Tag wrote\r\n");
giovannivisentini 13:685d95525ec8 118 if(mRequestRefresh){
giovannivisentini 13:685d95525ec8 119 mRequestRefresh=false;
giovannivisentini 13:685d95525ec8 120 tag->write(mMsg);
giovannivisentini 13:685d95525ec8 121 }else
giovannivisentini 13:685d95525ec8 122 tag->closeSession();
giovannivisentini 13:685d95525ec8 123 //if-else
giovannivisentini 13:685d95525ec8 124
giovannivisentini 13:685d95525ec8 125 };
giovannivisentini 13:685d95525ec8 126
giovannivisentini 13:685d95525ec8 127 /**
giovannivisentini 14:3b604972b89f 128 * if the user ask to update the value it open a new session
giovannivisentini 13:685d95525ec8 129 */
giovannivisentini 13:685d95525ec8 130 virtual void onSessionClose(NDefLib::NDefNfcTag *tag,bool success){
giovannivisentini 13:685d95525ec8 131 if(!success)
giovannivisentini 13:685d95525ec8 132 return onError();
giovannivisentini 13:685d95525ec8 133 mNfcNucleo->getLed3()=!mNfcNucleo->getLed3();
giovannivisentini 15:94c98d2aa235 134 printf("Session Close\r\n");
giovannivisentini 13:685d95525ec8 135 if(mRequestRefresh){
giovannivisentini 13:685d95525ec8 136 mRequestRefresh=false;
giovannivisentini 13:685d95525ec8 137 tag->openSession();
giovannivisentini 13:685d95525ec8 138 }else
giovannivisentini 13:685d95525ec8 139 mCommandFinish=true;
giovannivisentini 13:685d95525ec8 140 //if-else
giovannivisentini 13:685d95525ec8 141 };
giovannivisentini 13:685d95525ec8 142
giovannivisentini 13:685d95525ec8 143 };
giovannivisentini 13:685d95525ec8 144
giovannivisentini 13:685d95525ec8 145
giovannivisentini 13:685d95525ec8 146 static volatile bool buttonPress=false; /// true when the user press the message
giovannivisentini 13:685d95525ec8 147 static volatile bool nfcEvent=false; /// true when the user press the message
giovannivisentini 13:685d95525ec8 148
giovannivisentini 13:685d95525ec8 149 /**
giovannivisentini 13:685d95525ec8 150 * Call back called when the user press the button.
giovannivisentini 13:685d95525ec8 151 */
giovannivisentini 13:685d95525ec8 152 static void setButtonPress(){
giovannivisentini 13:685d95525ec8 153 buttonPress=true;
giovannivisentini 13:685d95525ec8 154 }//if buttonPress
giovannivisentini 13:685d95525ec8 155
giovannivisentini 13:685d95525ec8 156 static void setNfcEventCallback(){
giovannivisentini 13:685d95525ec8 157 nfcEvent=true;
giovannivisentini 13:685d95525ec8 158 }//if buttonPress
giovannivisentini 13:685d95525ec8 159
giovannivisentini 13:685d95525ec8 160 /**
giovannivisentini 13:685d95525ec8 161 * Write a custom record that count how many times the user press the button.
giovannivisentini 13:685d95525ec8 162 */
giovannivisentini 13:685d95525ec8 163 void sampleAsync_countClick() {
giovannivisentini 13:685d95525ec8 164
giovannivisentini 13:685d95525ec8 165 //instance the board with the default parameters
giovannivisentini 13:685d95525ec8 166 I2C i2cChannel(X_NUCLEO_NFC01A1::DEFAULT_SDA_PIN,X_NUCLEO_NFC01A1::DEFAULT_SDL_PIN);
giovannivisentini 13:685d95525ec8 167 X_NUCLEO_NFC01A1 *nfcNucleo = X_NUCLEO_NFC01A1::Instance(i2cChannel,&setNfcEventCallback);
giovannivisentini 13:685d95525ec8 168
giovannivisentini 13:685d95525ec8 169 //set the button interrupt
giovannivisentini 13:685d95525ec8 170 InterruptIn userButton(USER_BUTTON);
giovannivisentini 13:685d95525ec8 171 //InterruptIn userButton(SW1);
giovannivisentini 13:685d95525ec8 172 userButton.fall(setButtonPress);
giovannivisentini 13:685d95525ec8 173
giovannivisentini 13:685d95525ec8 174 //No call back needed since default behavior is sync
giovannivisentini 13:685d95525ec8 175 //nfcNucleo->getM24SR().GetSession();
giovannivisentini 13:685d95525ec8 176 //nfcNucleo->getM24SR().ManageI2CGPO(I2C_ANSWER_READY); //switch to async mode
giovannivisentini 13:685d95525ec8 177
giovannivisentini 13:685d95525ec8 178 //create the NDef message and record
giovannivisentini 13:685d95525ec8 179 NDefLib::Message msg;
giovannivisentini 13:685d95525ec8 180 MyRecord rClickCount;
giovannivisentini 13:685d95525ec8 181 msg.addRecord(&rClickCount);
giovannivisentini 13:685d95525ec8 182
giovannivisentini 13:685d95525ec8 183 WriteMyRecordCallback writeMyRecordCallback(nfcNucleo,msg);
giovannivisentini 13:685d95525ec8 184
giovannivisentini 13:685d95525ec8 185 nfcNucleo->getM24SR().getNDefTag().setCallback(&writeMyRecordCallback);
giovannivisentini 13:685d95525ec8 186 writeMyRecordCallback.updateMessage();
giovannivisentini 13:685d95525ec8 187 while(true){
giovannivisentini 13:685d95525ec8 188
giovannivisentini 13:685d95525ec8 189 if(buttonPress){
giovannivisentini 13:685d95525ec8 190 buttonPress=false;
giovannivisentini 13:685d95525ec8 191 //change the record content
giovannivisentini 13:685d95525ec8 192 rClickCount.incrementClick();
giovannivisentini 15:94c98d2aa235 193 printf("upgade Ndef message\r\n");
giovannivisentini 13:685d95525ec8 194 writeMyRecordCallback.updateMessage();
giovannivisentini 13:685d95525ec8 195 }//if
giovannivisentini 13:685d95525ec8 196 if(nfcEvent){
giovannivisentini 13:685d95525ec8 197 nfcEvent=false;
giovannivisentini 13:685d95525ec8 198 nfcNucleo->getM24SR().ManageEvent();
giovannivisentini 13:685d95525ec8 199 }//if
giovannivisentini 13:685d95525ec8 200 //wait next event
giovannivisentini 13:685d95525ec8 201 __WFE();
giovannivisentini 13:685d95525ec8 202 }//while
giovannivisentini 13:685d95525ec8 203
giovannivisentini 13:685d95525ec8 204 }//sample_countClick
giovannivisentini 13:685d95525ec8 205