Skip to content

Commit 04100a1

Browse files
authored
Merge pull request #14092 from hugueskamba/hk_nfc_m24sr_support
NFC: Add support for M24SR driver
2 parents 0c6753b + d0076a9 commit 04100a1

File tree

5 files changed

+3070
-0
lines changed

5 files changed

+3070
-0
lines changed

connectivity/drivers/nfc/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@
44
if("PN512" IN_LIST MBED_TARGET_LABELS)
55
add_subdirectory(PN512)
66
endif()
7+
8+
if("M24SR" IN_LIST MBED_TARGET_LABELS)
9+
add_subdirectory(TARGET_M24SR)
10+
endif()
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Copyright (c) 2020 ARM Limited. All rights reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
target_include_directories(mbed-nfc
5+
INTERFACE
6+
include
7+
include/nfc
8+
)
9+
10+
target_sources(mbed-nfc
11+
INTERFACE
12+
source/m24sr_driver.cpp
13+
)

0 commit comments

Comments
 (0)