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:
Mon Feb 01 15:33:26 2016 +0000
Revision:
13:685d95525ec8
Child:
14:3b604972b89f
add sync and async 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 13:685d95525ec8 47 class WriteMyRecordCallback : public NDefLib::NDefNfcTag::Callback {
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 13:685d95525ec8 94 printf("Error updating the tag\n\r");
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 13:685d95525ec8 105 tag->write(mMsg);
giovannivisentini 13:685d95525ec8 106 }
giovannivisentini 13:685d95525ec8 107
giovannivisentini 13:685d95525ec8 108 /**
giovannivisentini 13:685d95525ec8 109 * if the user ask for update the value it write again the message, otherwise close the session
giovannivisentini 13:685d95525ec8 110 */
giovannivisentini 13:685d95525ec8 111 virtual void onMessageWrite(NDefLib::NDefNfcTag *tag,bool success,
giovannivisentini 13:685d95525ec8 112 const NDefLib::Message&){
giovannivisentini 13:685d95525ec8 113 if(!success)
giovannivisentini 13:685d95525ec8 114 return onError();
giovannivisentini 13:685d95525ec8 115 mNfcNucleo->getLed2()=!mNfcNucleo->getLed2();
giovannivisentini 13:685d95525ec8 116 if(mRequestRefresh){
giovannivisentini 13:685d95525ec8 117 mRequestRefresh=false;
giovannivisentini 13:685d95525ec8 118 tag->write(mMsg);
giovannivisentini 13:685d95525ec8 119 }else
giovannivisentini 13:685d95525ec8 120 tag->closeSession();
giovannivisentini 13:685d95525ec8 121 //if-else
giovannivisentini 13:685d95525ec8 122
giovannivisentini 13:685d95525ec8 123 };
giovannivisentini 13:685d95525ec8 124
giovannivisentini 13:685d95525ec8 125 /**
giovannivisentini 13:685d95525ec8 126 * if the user ask for update the value it open a new session
giovannivisentini 13:685d95525ec8 127 */
giovannivisentini 13:685d95525ec8 128 virtual void onSessionClose(NDefLib::NDefNfcTag *tag,bool success){
giovannivisentini 13:685d95525ec8 129 if(!success)
giovannivisentini 13:685d95525ec8 130 return onError();
giovannivisentini 13:685d95525ec8 131 mNfcNucleo->getLed3()=!mNfcNucleo->getLed3();
giovannivisentini 13:685d95525ec8 132 if(mRequestRefresh){
giovannivisentini 13:685d95525ec8 133 mRequestRefresh=false;
giovannivisentini 13:685d95525ec8 134 tag->openSession();
giovannivisentini 13:685d95525ec8 135 }else
giovannivisentini 13:685d95525ec8 136 mCommandFinish=true;
giovannivisentini 13:685d95525ec8 137 //if-else
giovannivisentini 13:685d95525ec8 138 };
giovannivisentini 13:685d95525ec8 139
giovannivisentini 13:685d95525ec8 140 };
giovannivisentini 13:685d95525ec8 141
giovannivisentini 13:685d95525ec8 142
giovannivisentini 13:685d95525ec8 143 static volatile bool buttonPress=false; /// true when the user press the message
giovannivisentini 13:685d95525ec8 144 static volatile bool nfcEvent=false; /// true when the user press the message
giovannivisentini 13:685d95525ec8 145
giovannivisentini 13:685d95525ec8 146 /**
giovannivisentini 13:685d95525ec8 147 * Call back called when the user press the button.
giovannivisentini 13:685d95525ec8 148 */
giovannivisentini 13:685d95525ec8 149 static void setButtonPress(){
giovannivisentini 13:685d95525ec8 150 buttonPress=true;
giovannivisentini 13:685d95525ec8 151 }//if buttonPress
giovannivisentini 13:685d95525ec8 152
giovannivisentini 13:685d95525ec8 153 static void setNfcEventCallback(){
giovannivisentini 13:685d95525ec8 154 nfcEvent=true;
giovannivisentini 13:685d95525ec8 155 }//if buttonPress
giovannivisentini 13:685d95525ec8 156
giovannivisentini 13:685d95525ec8 157 /**
giovannivisentini 13:685d95525ec8 158 * Write a custom record that count how many times the user press the button.
giovannivisentini 13:685d95525ec8 159 */
giovannivisentini 13:685d95525ec8 160 void sampleAsync_countClick() {
giovannivisentini 13:685d95525ec8 161
giovannivisentini 13:685d95525ec8 162 //instance the board with the default parameters
giovannivisentini 13:685d95525ec8 163 I2C i2cChannel(X_NUCLEO_NFC01A1::DEFAULT_SDA_PIN,X_NUCLEO_NFC01A1::DEFAULT_SDL_PIN);
giovannivisentini 13:685d95525ec8 164 X_NUCLEO_NFC01A1 *nfcNucleo = X_NUCLEO_NFC01A1::Instance(i2cChannel,&setNfcEventCallback);
giovannivisentini 13:685d95525ec8 165
giovannivisentini 13:685d95525ec8 166 //set the button interrupt
giovannivisentini 13:685d95525ec8 167 InterruptIn userButton(USER_BUTTON);
giovannivisentini 13:685d95525ec8 168 //InterruptIn userButton(SW1);
giovannivisentini 13:685d95525ec8 169 userButton.fall(setButtonPress);
giovannivisentini 13:685d95525ec8 170
giovannivisentini 13:685d95525ec8 171 //No call back needed since default behavior is sync
giovannivisentini 13:685d95525ec8 172 //nfcNucleo->getM24SR().GetSession();
giovannivisentini 13:685d95525ec8 173 //nfcNucleo->getM24SR().ManageI2CGPO(I2C_ANSWER_READY); //switch to async mode
giovannivisentini 13:685d95525ec8 174
giovannivisentini 13:685d95525ec8 175 //create the NDef message and record
giovannivisentini 13:685d95525ec8 176 NDefLib::Message msg;
giovannivisentini 13:685d95525ec8 177 MyRecord rClickCount;
giovannivisentini 13:685d95525ec8 178 msg.addRecord(&rClickCount);
giovannivisentini 13:685d95525ec8 179
giovannivisentini 13:685d95525ec8 180 WriteMyRecordCallback writeMyRecordCallback(nfcNucleo,msg);
giovannivisentini 13:685d95525ec8 181
giovannivisentini 13:685d95525ec8 182 nfcNucleo->getM24SR().getNDefTag().setCallback(&writeMyRecordCallback);
giovannivisentini 13:685d95525ec8 183 writeMyRecordCallback.updateMessage();
giovannivisentini 13:685d95525ec8 184 while(true){
giovannivisentini 13:685d95525ec8 185
giovannivisentini 13:685d95525ec8 186 if(buttonPress){
giovannivisentini 13:685d95525ec8 187 buttonPress=false;
giovannivisentini 13:685d95525ec8 188 //change the record content
giovannivisentini 13:685d95525ec8 189 rClickCount.incrementClick();
giovannivisentini 13:685d95525ec8 190 writeMyRecordCallback.updateMessage();
giovannivisentini 13:685d95525ec8 191 }//if
giovannivisentini 13:685d95525ec8 192 if(nfcEvent){
giovannivisentini 13:685d95525ec8 193 nfcEvent=false;
giovannivisentini 13:685d95525ec8 194 nfcNucleo->getM24SR().ManageEvent();
giovannivisentini 13:685d95525ec8 195 }//if
giovannivisentini 13:685d95525ec8 196 //wait next event
giovannivisentini 13:685d95525ec8 197 __WFE();
giovannivisentini 13:685d95525ec8 198 }//while
giovannivisentini 13:685d95525ec8 199
giovannivisentini 13:685d95525ec8 200 }//sample_countClick
giovannivisentini 13:685d95525ec8 201