Skip to content

Commit

Permalink
Implement driver for ACR122S device
Browse files Browse the repository at this point in the history
  • Loading branch information
arkusuma committed Nov 23, 2011
1 parent 54b6827 commit 136cfdf
Show file tree
Hide file tree
Showing 6 changed files with 733 additions and 4 deletions.
4 changes: 4 additions & 0 deletions libnfc/drivers.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
# include "drivers/acr122.h"
# endif /* DRIVER_ACR122_ENABLED */

# if defined (DRIVER_ACR122S_ENABLED)
# include "drivers/acr122s.h"
# endif /* DRIVER_ACR122S_ENABLED */

# if defined (DRIVER_PN53X_USB_ENABLED)
# include "drivers/pn53x_usb.h"
# endif /* DRIVER_PN53X_USB_ENABLED */
Expand Down
6 changes: 5 additions & 1 deletion libnfc/drivers/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# set the include path found by configure
INCLUDES= $(all_includes) $(LIBNFC_CFLAGS)

noinst_HEADERS = acr122.h arygon.h pn532_uart.h pn53x_usb.h
noinst_HEADERS = acr122.h acr122s.h arygon.h pn532_uart.h pn53x_usb.h
noinst_LTLIBRARIES = libnfcdrivers.la

libnfcdrivers_la_SOURCES =
Expand All @@ -12,6 +12,10 @@ if DRIVER_ACR122_ENABLED
libnfcdrivers_la_SOURCES += acr122.c
endif

if DRIVER_ACR122S_ENABLED
libnfcdrivers_la_SOURCES += acr122s.c
endif

if DRIVER_ARYGON_ENABLED
libnfcdrivers_la_SOURCES += arygon.c
endif
Expand Down
Loading

0 comments on commit 136cfdf

Please sign in to comment.