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 Aug 21 12:12:30 2017 +0000
Revision:
20:ba95e0dc5975
Parent:
17:d8d3d2088cac
update NDefLib and mbed libs

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 14:3b604972b89f 34 #include "Samples/Samples.h"
giovannivisentini 13:685d95525ec8 35
giovannivisentini 14:3b604972b89f 36 //choose the demo to compile
giovannivisentini 17:d8d3d2088cac 37 //#define SAMPLE_WRITE_URL
giovannivisentini 4:f40b3505070c 38 //#define SAMPLE_COUNT_CLICK
giovannivisentini 20:ba95e0dc5975 39 #define SAMPLE_WRITE_AND_CHANGE_ALL
giovannivisentini 20:ba95e0dc5975 40 //#define SAMPLE_LOCK_TAG_CONTENT
giovannivisentini 14:3b604972b89f 41
giovannivisentini 14:3b604972b89f 42 //uncomment for the async example
giovannivisentini 20:ba95e0dc5975 43 //#define SYNC_MODE
giovannivisentini 4:f40b3505070c 44
giovannivisentini 4:f40b3505070c 45 int main(void)
giovannivisentini 4:f40b3505070c 46 {
giovannivisentini 4:f40b3505070c 47 #ifdef SAMPLE_WRITE_URL
giovannivisentini 13:685d95525ec8 48 #ifdef SYNC_MODE
giovannivisentini 13:685d95525ec8 49 sampleSync_writeUrl();
giovannivisentini 13:685d95525ec8 50 #else
giovannivisentini 13:685d95525ec8 51 sampleAsync_writeUrl();
giovannivisentini 13:685d95525ec8 52 #endif
giovannivisentini 4:f40b3505070c 53 #endif /* SAMPLE_WRITE_URL */
giovannivisentini 1:6d202b62ed68 54
giovannivisentini 4:f40b3505070c 55 #ifdef SAMPLE_COUNT_CLICK
giovannivisentini 13:685d95525ec8 56 #ifdef SYNC_MODE
giovannivisentini 13:685d95525ec8 57 sampleSync_countClick();
giovannivisentini 13:685d95525ec8 58 #else
giovannivisentini 13:685d95525ec8 59 sampleAsync_countClick();
giovannivisentini 13:685d95525ec8 60 #endif
giovannivisentini 4:f40b3505070c 61 #endif /* SAMPLE_COUNT_CLICK */
giovannivisentini 2:0648c1561eb2 62
giovannivisentini 4:f40b3505070c 63 #ifdef SAMPLE_WRITE_AND_CHANGE_ALL
giovannivisentini 13:685d95525ec8 64 #ifdef SYNC_MODE
giovannivisentini 13:685d95525ec8 65 sampleSync_writeAndChangeAll();
giovannivisentini 13:685d95525ec8 66 #else
giovannivisentini 13:685d95525ec8 67 sampleAsync_writeAndChangeAll();
giovannivisentini 13:685d95525ec8 68 #endif
giovannivisentini 4:f40b3505070c 69 #endif /* SAMPLE_WRITE_AND_CHANGE_ALL */
giovannivisentini 8:a9ecd7687de7 70
giovannivisentini 8:a9ecd7687de7 71 #ifdef SAMPLE_LOCK_TAG_CONTENT
giovannivisentini 13:685d95525ec8 72 #ifdef SYNC_MODE
giovannivisentini 13:685d95525ec8 73 sampleSync_lockTagContent();
giovannivisentini 13:685d95525ec8 74 #else
giovannivisentini 13:685d95525ec8 75 sampleAsync_lockTagContent();
giovannivisentini 13:685d95525ec8 76 #endif
giovannivisentini 8:a9ecd7687de7 77 #endif /* SAMPLE_LOCK_TAG_CONTENT */
giovannivisentini 13:685d95525ec8 78 }