File tree Expand file tree Collapse file tree 26 files changed +142
-110
lines changed
cryptocell/FEATURE_CRYPTOCELL310 Expand file tree Collapse file tree 26 files changed +142
-110
lines changed Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
- add_subdirectory (lora )
5
4
add_subdirectory (testing )
Original file line number Diff line number Diff line change @@ -6,7 +6,14 @@ mbed_add_cmake_directory_if_labels("FEATURE")
6
6
add_subdirectory (cellular )
7
7
add_subdirectory (drivers )
8
8
add_subdirectory (libraries )
9
+ add_subdirectory (lorawan )
9
10
add_subdirectory (lwipstack )
10
11
add_subdirectory (mbedtls )
11
12
add_subdirectory (nanostack )
12
13
add_subdirectory (netsocket )
14
+ add_subdirectory (nfc )
15
+
16
+ target_include_directories (mbed-os
17
+ PUBLIC
18
+ ${CMAKE_CURRENT_SOURCE_DIR}
19
+ )
Original file line number Diff line number Diff line change @@ -5,5 +5,7 @@ add_subdirectory(802.15.4_RF)
5
5
add_subdirectory (ble )
6
6
add_subdirectory (cellular )
7
7
add_subdirectory (emac )
8
+ add_subdirectory (lora )
8
9
add_subdirectory (mbedtls )
10
+ add_subdirectory (nfc )
9
11
add_subdirectory (wifi )
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
+ mbed_add_cmake_directory_if_labels ("FEATURE" )
4
5
mbed_add_cmake_directory_if_labels ("TARGET" )
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2020 ARM Limited. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ mbed_add_cmake_directory_if_labels ("TARGET" )
5
+ add_subdirectory (binaries )
6
+
7
+ target_include_directories (mbed-os
8
+ PUBLIC
9
+ ${CMAKE_CURRENT_SOURCE_DIR}
10
+ ${CMAKE_CURRENT_SOURCE_DIR} /include
11
+ ${CMAKE_CURRENT_SOURCE_DIR} /include/cryptocell310
12
+ ${CMAKE_CURRENT_SOURCE_DIR} /include/internal
13
+ )
14
+
15
+ target_sources (mbed-os
16
+ PRIVATE
17
+ source /aes_alt.c
18
+ source /cc_internal.c
19
+ source /ccm_alt.c
20
+ source /cmac_alt.c
21
+ source /ecdh_alt.c
22
+ source /ecdsa_alt.c
23
+ source /sha1_alt.c
24
+ source /sha256_alt.c
25
+ source /sha512_alt.c
26
+ source /trng.c
27
+ )
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
- mbed_add_cmake_directory_if_labels ( "FEATURE" )
4
+ add_subdirectory ( PN512 )
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2020 ARM Limited. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ target_include_directories (mbed-os
5
+ PUBLIC
6
+ ${CMAKE_CURRENT_SOURCE_DIR} /include
7
+ ${CMAKE_CURRENT_SOURCE_DIR} /include/nfc
8
+ ${CMAKE_CURRENT_SOURCE_DIR} /include/nfc/controllers
9
+ ${CMAKE_CURRENT_SOURCE_DIR} /source
10
+ ${CMAKE_CURRENT_SOURCE_DIR} /source/transceiver
11
+ )
12
+
13
+ target_sources (mbed-os
14
+ PRIVATE
15
+ source /PN512Driver.cpp
16
+ source /PN512SPITransportDriver.cpp
17
+ source /PN512TransportDriver.cpp
18
+
19
+ source /transceiver/pn512.c
20
+ source /transceiver/pn512_cmd.c
21
+ source /transceiver/pn512_hw.c
22
+ source /transceiver/pn512_irq.c
23
+ source /transceiver/pn512_poll.c
24
+ source /transceiver/pn512_registers.c
25
+ source /transceiver/pn512_rf.c
26
+ source /transceiver/pn512_timer.c
27
+ source /transceiver/pn512_transceive.c
28
+ )
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2020 ARM Limited. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ add_subdirectory (lorastack )
5
+ add_subdirectory (system )
6
+
7
+ target_include_directories (mbed-os
8
+ PUBLIC
9
+ ${CMAKE_CURRENT_SOURCE_DIR}
10
+ ${CMAKE_CURRENT_SOURCE_DIR} /include
11
+ ${CMAKE_CURRENT_SOURCE_DIR} /include/lorawan
12
+ )
13
+
14
+ target_sources (mbed-os
15
+ PRIVATE
16
+ source /LoRaWANInterface.cpp
17
+ source /LoRaWANStack.cpp
18
+ )
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
+ target_include_directories (mbed-os
5
+ PUBLIC
6
+ ${CMAKE_CURRENT_SOURCE_DIR}
7
+ ${CMAKE_CURRENT_SOURCE_DIR} /mac
8
+ ${CMAKE_CURRENT_SOURCE_DIR} /phy
9
+ )
10
+
4
11
target_sources (mbed-os
5
12
PRIVATE
6
13
mac/LoRaMac.cpp
@@ -19,10 +26,3 @@ target_sources(mbed-os
19
26
phy/LoRaPHYKR920.cpp
20
27
phy/LoRaPHYUS915.cpp
21
28
)
22
-
23
- target_include_directories (mbed-os
24
- PUBLIC
25
- ${CMAKE_CURRENT_SOURCE_DIR}
26
- ${CMAKE_CURRENT_SOURCE_DIR} /mac
27
- ${CMAKE_CURRENT_SOURCE_DIR} /phy
28
- )
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2020 ARM Limited. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ add_subdirectory (libraries )
5
+
6
+ target_include_directories (mbed-os
7
+ PUBLIC
8
+ ${CMAKE_CURRENT_SOURCE_DIR}
9
+ ${CMAKE_CURRENT_SOURCE_DIR} /include
10
+ ${CMAKE_CURRENT_SOURCE_DIR} /include/nfc
11
+ ${CMAKE_CURRENT_SOURCE_DIR} /include/nfc/ndef
12
+ ${CMAKE_CURRENT_SOURCE_DIR} /include/nfc/ndef/common
13
+ )
14
+
15
+ target_sources (mbed-os
16
+ PRIVATE
17
+ source /NFCController.cpp
18
+ source /NFCControllerDriver.cpp
19
+ source /NFCEEPROM.cpp
20
+ source /NFCEEPROMDriver.cpp
21
+ source /NFCNDEFCapable.cpp
22
+ source /NFCRemoteEndpoint.cpp
23
+ source /NFCRemoteInitiator.cpp
24
+ source /NFCTarget.cpp
25
+ source /Type4RemoteInitiator.cpp
26
+
27
+ source /ndef/MessageBuilder.cpp
28
+ source /ndef/MessageParser.cpp
29
+ source /ndef/RecordParser.cpp
30
+
31
+ source /ndef/common/Mime.cpp
32
+ source /ndef/common/SimpleMessageParser.cpp
33
+ source /ndef/common/Text.cpp
34
+ source /ndef/common/URI.cpp
35
+ source /ndef/common/util.cpp
36
+ )
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2020 ARM Limited. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ add_subdirectory (acore )
5
+ add_subdirectory (stack )
6
+
7
+ target_include_directories (mbed-os
8
+ PUBLIC
9
+ ${CMAKE_CURRENT_SOURCE_DIR}
10
+ )
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
- add_subdirectory (lorastack )
5
- add_subdirectory (system )
6
-
7
- target_sources (mbed-os
8
- PRIVATE
9
- LoRaWANInterface.cpp
10
- LoRaWANStack.cpp
11
- )
12
-
13
4
target_include_directories (mbed-os
14
5
PUBLIC
15
6
${CMAKE_CURRENT_SOURCE_DIR}
16
7
)
8
+
9
+ target_sources (mbed-os
10
+ PRIVATE
11
+ transceiver.c
12
+ )
Original file line number Diff line number Diff line change 3
3
4
4
mbed_add_cmake_directory_if_labels ("FEATURE" )
5
5
6
- add_subdirectory (cryptocell )
7
6
add_subdirectory (device_key )
8
7
add_subdirectory (frameworks/mbed-client-randlib )
9
8
add_subdirectory (frameworks/mbed-trace )
10
9
add_subdirectory (frameworks/mbed-client-cli )
11
- add_subdirectory (lorawan )
12
- add_subdirectory (nfc )
13
10
14
11
target_include_directories (mbed-os
15
12
PUBLIC
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments