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:
Thu Jan 14 09:17:03 2016 +0000
Revision:
12:c4a778f52d8a
Parent:
9:9742acd0c015
Child:
13:685d95525ec8
update dependency;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
giovannivisentini 5:3b300c8235b7 1 /**
giovannivisentini 5:3b300c8235b7 2 ******************************************************************************
giovannivisentini 5:3b300c8235b7 3 * @file main.cpp
giovannivisentini 5:3b300c8235b7 4 * @date 03/12/2015
giovannivisentini 5:3b300c8235b7 5 ******************************************************************************
giovannivisentini 5:3b300c8235b7 6 *
giovannivisentini 5:3b300c8235b7 7 * COPYRIGHT(c) 2015 STMicroelectronics
giovannivisentini 5:3b300c8235b7 8 *
giovannivisentini 5:3b300c8235b7 9 * Redistribution and use in source and binary forms, with or without modification,
giovannivisentini 5:3b300c8235b7 10 * are permitted provided that the following conditions are met:
giovannivisentini 5:3b300c8235b7 11 * 1. Redistributions of source code must retain the above copyright notice,
giovannivisentini 5:3b300c8235b7 12 * this list of conditions and the following disclaimer.
giovannivisentini 5:3b300c8235b7 13 * 2. Redistributions in binary form must reproduce the above copyright notice,
giovannivisentini 5:3b300c8235b7 14 * this list of conditions and the following disclaimer in the documentation
giovannivisentini 5:3b300c8235b7 15 * and/or other materials provided with the distribution.
giovannivisentini 5:3b300c8235b7 16 * 3. Neither the name of STMicroelectronics nor the names of its contributors
giovannivisentini 5:3b300c8235b7 17 * may be used to endorse or promote products derived from this software
giovannivisentini 5:3b300c8235b7 18 * without specific prior written permission.
giovannivisentini 5:3b300c8235b7 19 *
giovannivisentini 5:3b300c8235b7 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
giovannivisentini 5:3b300c8235b7 21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
giovannivisentini 5:3b300c8235b7 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
giovannivisentini 5:3b300c8235b7 23 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
giovannivisentini 5:3b300c8235b7 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
giovannivisentini 5:3b300c8235b7 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
giovannivisentini 5:3b300c8235b7 26 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
giovannivisentini 5:3b300c8235b7 27 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
giovannivisentini 5:3b300c8235b7 28 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
giovannivisentini 5:3b300c8235b7 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
giovannivisentini 5:3b300c8235b7 30 *
giovannivisentini 5:3b300c8235b7 31 ******************************************************************************
giovannivisentini 5:3b300c8235b7 32 */
giovannivisentini 5:3b300c8235b7 33
giovannivisentini 4:f40b3505070c 34 #include "Samples/Samples.h"
giovannivisentini 4:f40b3505070c 35
giovannivisentini 9:9742acd0c015 36 //#define SAMPLE_WRITE_URL
giovannivisentini 4:f40b3505070c 37 //#define SAMPLE_COUNT_CLICK
giovannivisentini 12:c4a778f52d8a 38 #define SAMPLE_WRITE_AND_CHANGE_ALL
giovannivisentini 12:c4a778f52d8a 39 //#define SAMPLE_LOCK_TAG_CONTENT
giovannivisentini 4:f40b3505070c 40
giovannivisentini 4:f40b3505070c 41 int main(void)
giovannivisentini 4:f40b3505070c 42 {
giovannivisentini 4:f40b3505070c 43 #ifdef SAMPLE_WRITE_URL
giovannivisentini 4:f40b3505070c 44 sample_writeUrl();
giovannivisentini 4:f40b3505070c 45 #endif /* SAMPLE_WRITE_URL */
giovannivisentini 1:6d202b62ed68 46
giovannivisentini 4:f40b3505070c 47 #ifdef SAMPLE_COUNT_CLICK
giovannivisentini 4:f40b3505070c 48 sample_countClick();
giovannivisentini 4:f40b3505070c 49 #endif /* SAMPLE_COUNT_CLICK */
giovannivisentini 2:0648c1561eb2 50
giovannivisentini 4:f40b3505070c 51 #ifdef SAMPLE_WRITE_AND_CHANGE_ALL
giovannivisentini 4:f40b3505070c 52 sample_writeAndChangeAll();
giovannivisentini 4:f40b3505070c 53 #endif /* SAMPLE_WRITE_AND_CHANGE_ALL */
giovannivisentini 8:a9ecd7687de7 54
giovannivisentini 8:a9ecd7687de7 55 #ifdef SAMPLE_LOCK_TAG_CONTENT
giovannivisentini 8:a9ecd7687de7 56 sample_lockTagContent();
giovannivisentini 8:a9ecd7687de7 57 #endif /* SAMPLE_LOCK_TAG_CONTENT */
giovannivisentini 4:f40b3505070c 58 }