112 lines
3.2 KiB
C
112 lines
3.2 KiB
C
/*-
|
|
* Public platform independent Near Field Communication (NFC) library examples
|
|
*
|
|
* Copyright (C) 2009, Roel Verdult
|
|
* Copyright (C) 2010, Romuald Conty
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
* 1) Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* 2 )Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* Note that this license only applies on the examples, NFC library itself is under LGPL
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @file nfc-dep-initiator.c
|
|
* @brief Turns the NFC device into a D.E.P. initiator (see NFCIP-1)
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif // HAVE_CONFIG_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <signal.h>
|
|
|
|
#include <nfc/nfc.h>
|
|
|
|
#include "utils/nfc-utils.h"
|
|
|
|
#define MAX_FRAME_LEN 264
|
|
|
|
static nfc_device *pnd;
|
|
|
|
void stop_dep_communication (int sig)
|
|
{
|
|
(void) sig;
|
|
if (pnd)
|
|
nfc_abort_command (pnd);
|
|
else
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
|
|
int
|
|
main (int argc, const char *argv[])
|
|
{
|
|
nfc_target nt;
|
|
uint8_t abtRx[MAX_FRAME_LEN];
|
|
size_t szRx = sizeof(abtRx);
|
|
uint8_t abtTx[] = "Hello World!";
|
|
|
|
if (argc > 1) {
|
|
printf ("Usage: %s\n", argv[0]);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
pnd = nfc_open (NULL);
|
|
if (!pnd) {
|
|
printf("Unable to open NFC device.\n");
|
|
return EXIT_FAILURE;
|
|
}
|
|
printf ("NFC device: %s\n opened", nfc_device_get_name (pnd));
|
|
|
|
signal (SIGINT, stop_dep_communication);
|
|
|
|
if (nfc_initiator_init (pnd) < 0) {
|
|
nfc_perror(pnd, "nfc_initiator_init");
|
|
goto error;
|
|
}
|
|
|
|
if(nfc_initiator_select_dep_target (pnd, NDM_PASSIVE, NBR_212, NULL, &nt, 1000) < 0) {
|
|
nfc_perror(pnd, "nfc_initiator_select_dep_target");
|
|
goto error;
|
|
}
|
|
print_nfc_target (nt, false);
|
|
|
|
printf ("Sending: %s\n", abtTx);
|
|
if (nfc_initiator_transceive_bytes (pnd, abtTx, sizeof(abtTx), abtRx, &szRx, 0) < 0) {
|
|
nfc_perror(pnd, "nfc_initiator_transceive_bytes");
|
|
goto error;
|
|
}
|
|
|
|
abtRx[szRx] = 0;
|
|
printf ("Received: %s\n", abtRx);
|
|
|
|
if (nfc_initiator_deselect_target (pnd) < 0) {
|
|
nfc_perror(pnd, "nfc_initiator_deselect_target");
|
|
goto error;
|
|
}
|
|
|
|
error:
|
|
nfc_close (pnd);
|
|
return EXIT_SUCCESS;
|
|
}
|