From d1d6bf51b387ef39f97320b2febd5d79231682ba Mon Sep 17 00:00:00 2001 From: Harrison Mutai Date: Tue, 6 Oct 2020 16:21:25 +0100 Subject: [PATCH 1/2] Add license notice to Arm copyrighted source files Scancode found missing license notices in our source files. This commit addresses those issues by adding an Apache-2.0 notice to source files highlighted. --- .../libService/unittest/nsnvmhelper/main.cpp | 13 +++++++++++++ .../unittest/nsnvmhelper/nsnvmhelpertest.cpp | 13 +++++++++++++ .../unittest/nsnvmhelper/test_ns_nvm_helper.c | 13 +++++++++++++ .../unittest/nsnvmhelper/test_ns_nvm_helper.h | 13 +++++++++++++ .../source/NanostackEMACInterface.cpp | 13 +++++++++++++ platform/randlib/tests/unit/stubs/random_stub.c | 15 ++++++++++++++- .../TARGET_KLXX/TARGET_KL25Z/device/cmsis.h | 17 +++++++++++++++-- .../TARGET_KLXX/TARGET_KL46Z/device/cmsis.h | 17 +++++++++++++++-- .../TARGET_K66F/device/cmsis.h | 15 ++++++++++++++- .../TARGET_K82F/device/cmsis.h | 15 ++++++++++++++- .../TARGET_KL27Z/device/cmsis.h | 15 ++++++++++++++- .../TARGET_KL43Z/device/cmsis.h | 15 ++++++++++++++- .../TARGET_KW41Z/device/cmsis.h | 15 ++++++++++++++- .../TARGET_MCU_K22F512/device/cmsis.h | 15 ++++++++++++++- .../TARGET_MCU_K64F/device/cmsis.h | 15 ++++++++++++++- .../TARGET_NXP/TARGET_LPC11U6X/device/cmsis.h | 17 +++++++++++++++-- .../TARGET_LPC11XX_11CXX/device/cmsis.h | 17 +++++++++++++++-- .../TARGET_NXP/TARGET_LPC176X/device/cmsis.h | 17 +++++++++++++++-- .../TARGET_LPC54114/device/cmsis.h | 15 ++++++++++++++- .../TARGET_LPC55S69/device/cmsis.h | 15 ++++++++++++++- .../TARGET_MCU_LPC546XX/device/cmsis.h | 15 ++++++++++++++- .../TARGET_MIMXRT1050/device/cmsis.h | 15 ++++++++++++++- .../TARGET_GR_LYCHEE/device/cmsis.h | 15 ++++++++++++++- .../TARGET_RZ_A1XX/TARGET_RZ_A1H/device/cmsis.h | 15 ++++++++++++++- .../TARGET_EFM32/common/cmsis.h | 15 ++++++++++++++- .../TARGET_EFM32/common/cmsis_nvic.h | 15 ++++++++++++++- .../TARGET_TMPM46B/device/cmsis.h | 15 ++++++++++++++- .../TARGET_TMPM46B/device/cmsis_nvic.h | 15 ++++++++++++++- 28 files changed, 392 insertions(+), 28 deletions(-) diff --git a/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/main.cpp b/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/main.cpp index 602aa1faac1..1d4177e2178 100644 --- a/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/main.cpp +++ b/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/main.cpp @@ -1,5 +1,18 @@ /* * Copyright (c) 2015 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ #include "CppUTest/CommandLineTestRunner.h" diff --git a/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/nsnvmhelpertest.cpp b/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/nsnvmhelpertest.cpp index 32c3fc8384c..df42b125bfa 100644 --- a/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/nsnvmhelpertest.cpp +++ b/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/nsnvmhelpertest.cpp @@ -1,5 +1,18 @@ /* * Copyright (c) 2016 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ #include "CppUTest/TestHarness.h" #include "test_ns_nvm_helper.h" diff --git a/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/test_ns_nvm_helper.c b/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/test_ns_nvm_helper.c index 10b41c87d0f..a83eb877237 100644 --- a/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/test_ns_nvm_helper.c +++ b/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/test_ns_nvm_helper.c @@ -1,5 +1,18 @@ /* * Copyright (c) 2016 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ #include diff --git a/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/test_ns_nvm_helper.h b/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/test_ns_nvm_helper.h index 0d0af911e1a..408a33f2d4a 100644 --- a/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/test_ns_nvm_helper.h +++ b/connectivity/libraries/nanostack-libservice/test/libService/unittest/nsnvmhelper/test_ns_nvm_helper.h @@ -1,5 +1,18 @@ /* * Copyright (c) 2016 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ #ifndef TEST_NS_NVM_HELPER_H #define TEST_NS_NVM_HELPER_H diff --git a/connectivity/nanostack/mbed-mesh-api/source/NanostackEMACInterface.cpp b/connectivity/nanostack/mbed-mesh-api/source/NanostackEMACInterface.cpp index 5c0c3172cd1..8d677a4b56d 100644 --- a/connectivity/nanostack/mbed-mesh-api/source/NanostackEMACInterface.cpp +++ b/connectivity/nanostack/mbed-mesh-api/source/NanostackEMACInterface.cpp @@ -1,5 +1,18 @@ /* * Copyright (c) 2017 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ #include "NanostackEthernetInterface.h" diff --git a/platform/randlib/tests/unit/stubs/random_stub.c b/platform/randlib/tests/unit/stubs/random_stub.c index c271839a6b8..5d5a37c4c51 100644 --- a/platform/randlib/tests/unit/stubs/random_stub.c +++ b/platform/randlib/tests/unit/stubs/random_stub.c @@ -1,5 +1,18 @@ /* - * Copyright (c) 2016, ARM Limited, All Rights Reserved + * Copyright (c) 2016 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ #include "ns_types.h" diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/device/cmsis.h b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/device/cmsis.h index 82dab2b69c5..51c0ea0d11a 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/device/cmsis.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/device/cmsis.h @@ -1,6 +1,19 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. - * + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * * A generic CMSIS include header, pulling in LPC11U24 specifics */ diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/device/cmsis.h b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/device/cmsis.h index 553b60775f6..cb6877944a1 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/device/cmsis.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/device/cmsis.h @@ -1,6 +1,19 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. - * + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * * A generic CMSIS include header, pulling in LPC11U24 specifics */ diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/cmsis.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/cmsis.h index 7423a125ba6..59063cbeba5 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/cmsis.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC11U24 specifics */ diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/device/cmsis.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/device/cmsis.h index 7423a125ba6..59063cbeba5 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/device/cmsis.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC11U24 specifics */ diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/device/cmsis.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/device/cmsis.h index 7423a125ba6..59063cbeba5 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/device/cmsis.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC11U24 specifics */ diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/device/cmsis.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/device/cmsis.h index 7423a125ba6..59063cbeba5 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/device/cmsis.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC11U24 specifics */ diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/device/cmsis.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/device/cmsis.h index 7423a125ba6..59063cbeba5 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/device/cmsis.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC11U24 specifics */ diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/device/cmsis.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/device/cmsis.h index 7423a125ba6..59063cbeba5 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/device/cmsis.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC11U24 specifics */ diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/device/cmsis.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/device/cmsis.h index 7423a125ba6..59063cbeba5 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/device/cmsis.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC11U24 specifics */ diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/device/cmsis.h b/targets/TARGET_NXP/TARGET_LPC11U6X/device/cmsis.h index 539e1f32b14..a82568172e6 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/device/cmsis.h +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/device/cmsis.h @@ -1,6 +1,19 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. - * + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * * A generic CMSIS include header, pulling in LPC8xx specifics */ diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/device/cmsis.h b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/device/cmsis.h index 4b9e4353c63..1e7b09b6463 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/device/cmsis.h +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/device/cmsis.h @@ -1,6 +1,19 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. - * + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * * A generic CMSIS include header, pulling in LPC11U24 specifics */ diff --git a/targets/TARGET_NXP/TARGET_LPC176X/device/cmsis.h b/targets/TARGET_NXP/TARGET_LPC176X/device/cmsis.h index 2e51a087d18..adeb177ccc1 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/device/cmsis.h +++ b/targets/TARGET_NXP/TARGET_LPC176X/device/cmsis.h @@ -1,6 +1,19 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. - * + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * * A generic CMSIS include header, pulling in LPC1768 specifics */ diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/device/cmsis.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/device/cmsis.h index ddbfa5ea1e0..4cad8ae3c42 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/device/cmsis.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC54114 specifics */ diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/device/cmsis.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/device/cmsis.h index b599d5e8fe2..d8e375e532b 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/device/cmsis.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2017 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC54608 specifics */ diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/device/cmsis.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/device/cmsis.h index 84dc6cdf582..25a9a1d887c 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/device/cmsis.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2017 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC54608 specifics */ diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/device/cmsis.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/device/cmsis.h index 7423a125ba6..59063cbeba5 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/device/cmsis.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC11U24 specifics */ diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device/cmsis.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device/cmsis.h index 803dc06d921..d7ffa88adc1 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device/cmsis.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC1768 specifics */ diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device/cmsis.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device/cmsis.h index 5d8b03f68f8..0a79b3f884b 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device/cmsis.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in LPC1768 specifics */ diff --git a/targets/TARGET_Silicon_Labs/TARGET_EFM32/common/cmsis.h b/targets/TARGET_Silicon_Labs/TARGET_EFM32/common/cmsis.h index 21b74182e47..ed26251465e 100644 --- a/targets/TARGET_Silicon_Labs/TARGET_EFM32/common/cmsis.h +++ b/targets/TARGET_Silicon_Labs/TARGET_EFM32/common/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS +/* * Copyright (C) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in EFM32 specifics */ diff --git a/targets/TARGET_Silicon_Labs/TARGET_EFM32/common/cmsis_nvic.h b/targets/TARGET_Silicon_Labs/TARGET_EFM32/common/cmsis_nvic.h index d1803b16471..5006434f626 100644 --- a/targets/TARGET_Silicon_Labs/TARGET_EFM32/common/cmsis_nvic.h +++ b/targets/TARGET_Silicon_Labs/TARGET_EFM32/common/cmsis_nvic.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - cmsis_nvic +/* * Copyright (c) 2009-2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ #ifndef MBED_CMSIS_NVIC_H diff --git a/targets/TARGET_TOSHIBA/TARGET_TMPM46B/device/cmsis.h b/targets/TARGET_TOSHIBA/TARGET_TMPM46B/device/cmsis.h index d357205d20f..36c6289bf75 100644 --- a/targets/TARGET_TOSHIBA/TARGET_TMPM46B/device/cmsis.h +++ b/targets/TARGET_TOSHIBA/TARGET_TMPM46B/device/cmsis.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - CMSIS for TMPM46B +/* * Copyright (C) 2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * A generic CMSIS include header, pulling in TMPM46B specifics */ diff --git a/targets/TARGET_TOSHIBA/TARGET_TMPM46B/device/cmsis_nvic.h b/targets/TARGET_TOSHIBA/TARGET_TMPM46B/device/cmsis_nvic.h index 289ce77f59d..88bd10869d5 100644 --- a/targets/TARGET_TOSHIBA/TARGET_TMPM46B/device/cmsis_nvic.h +++ b/targets/TARGET_TOSHIBA/TARGET_TMPM46B/device/cmsis_nvic.h @@ -1,5 +1,18 @@ -/* mbed Microcontroller Library - cmsis_nvic for TMPM46B +/* * Copyright (c) 2011 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. * * CMSIS-style functionality to support dynamic vectors */ From 4fad1112e5f7eac4a17a470e38a8e16d7ba3997b Mon Sep 17 00:00:00 2001 From: Harrison Mutai Date: Thu, 8 Oct 2020 14:27:45 +0100 Subject: [PATCH 2/2] Add SPDX license identifier to Arm files Add license identifier to files which Arm owns the copyright to, and contain either BSD-3 or Apache-2.0 licenses. This is to address license errors raised by scancode analysis. --- cmsis/device/RTE/include/RTE_Components.h | 1 + connectivity/FEATURE_BLE/include/ble/driver/CordioHCIDriver.h | 1 + .../FEATURE_BLE/include/ble/driver/CordioHCITransportDriver.h | 1 + connectivity/FEATURE_BLE/include/ble/driver/H4TransportDriver.h | 1 + .../FEATURE_BLE/source/cordio/TESTS/cordio_hci/driver/main.cpp | 1 + .../source/cordio/TESTS/cordio_hci/transport/main.cpp | 1 + .../FEATURE_BLE/source/cordio/driver/CordioHCIDriver.cpp | 1 + .../source/cordio/driver/CordioHCITransportDriver.cpp | 1 + .../FEATURE_BLE/source/cordio/driver/H4TransportDriver.cpp | 1 + connectivity/FEATURE_BLE/source/gap/AdvertisingDataBuilder.cpp | 1 + connectivity/FEATURE_BLE/source/gap/AdvertisingParameters.cpp | 1 + connectivity/FEATURE_BLE/source/gap/ConnectionParameters.cpp | 1 + connectivity/cellular/include/cellular/framework/common/APN_db.h | 1 + connectivity/cellular/source/framework/common/APN_db.cpp | 1 + .../TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCIDriver.cpp | 1 + .../TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCIDriver.h | 1 + .../TARGET_NRF5x/NRFCordioHCITransportDriver.cpp | 1 + .../TARGET_NRF5x/NRFCordioHCITransportDriver.h | 1 + .../drivers/emac/TARGET_ARM_FM/COMPONENT_LAN91C111/fvp_emac.cpp | 1 + .../drivers/emac/TARGET_ARM_FM/COMPONENT_LAN91C111/fvp_emac.h | 1 + .../emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac.cpp | 1 + .../emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac.h | 1 + .../TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac_config.h | 1 + .../drivers/emac/TARGET_NUVOTON_EMAC/TARGET_M480/m480_eth.c | 1 + .../drivers/emac/TARGET_NUVOTON_EMAC/TARGET_M480/m480_eth.h | 1 + .../drivers/emac/TARGET_NUVOTON_EMAC/TARGET_NUC472/nuc472_eth.c | 1 + .../drivers/emac/TARGET_NUVOTON_EMAC/TARGET_NUC472/nuc472_eth.h | 1 + connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_emac.cpp | 1 + .../drivers/emac/TARGET_NUVOTON_EMAC/numaker_emac_config.h | 1 + connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_eth_hal.h | 1 + .../drivers/emac/TARGET_NXP_EMAC/TARGET_LPCTarget/lpc17_emac.h | 1 + .../TARGET_FF_LPC546XX/hardware_init_LPC546XX.c | 1 + .../TARGET_LPCXpresso/hardware_init_LPC546XX.c | 1 + .../emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/lpc546xx_emac.cpp | 1 + .../TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/lpc546xx_emac_config.h | 1 + .../drivers/emac/TARGET_RENESAS_EMAC/TARGET_RZ_A1XX/rza1_emac.h | 1 + .../drivers/emac/TARGET_STM/TARGET_STM32F2/stm32f2_eth_conf.c | 1 + .../TARGET_STM/TARGET_STM32F4/TARGET_ARCH_MAX/stm32f4_eth_conf.c | 1 + .../TARGET_STM32F4/TARGET_NUCLEO_F429ZI/stm32f4_eth_conf.c | 1 + .../TARGET_STM32F4/TARGET_NUCLEO_F439ZI/stm32f4_eth_conf.c | 1 + .../drivers/emac/TARGET_STM/TARGET_STM32F7/stm32f7_eth_conf.c | 1 + connectivity/drivers/mbedtls/TARGET_STM/cryp_stm32.h | 1 + connectivity/drivers/mbedtls/TARGET_STM/hash_stm32.h | 1 + .../drivers/nfc/PN512/include/nfc/controllers/PN512Driver.h | 1 + .../nfc/PN512/include/nfc/controllers/PN512SPITransportDriver.h | 1 + .../nfc/PN512/include/nfc/controllers/PN512TransportDriver.h | 1 + connectivity/drivers/nfc/PN512/source/PN512Driver.cpp | 1 + .../drivers/nfc/PN512/source/PN512SPITransportDriver.cpp | 1 + connectivity/drivers/nfc/PN512/source/PN512TransportDriver.cpp | 1 + connectivity/lwipstack/include/lwipstack/LWIPMemoryManager.h | 1 + connectivity/lwipstack/include/lwipstack/LWIPStack.h | 1 + connectivity/lwipstack/include/lwipstack/lwip_tools.h | 1 + connectivity/lwipstack/lwip-sys/lwip_random.c | 1 + connectivity/lwipstack/lwip-sys/lwip_random.h | 1 + connectivity/lwipstack/source/LWIPInterface.cpp | 1 + connectivity/lwipstack/source/LWIPInterfaceEMAC.cpp | 1 + connectivity/lwipstack/source/LWIPMemoryManager.cpp | 1 + connectivity/lwipstack/source/LWIPStack.cpp | 1 + connectivity/lwipstack/source/lwip_tools.cpp | 1 + connectivity/mbedtls/platform/src/mbed_trng.cpp | 1 + .../nanostack/mbed-mesh-api/source/NanostackMemoryManager.cpp | 1 + .../mbed-mesh-api/source/include/NanostackMemoryManager.h | 1 + .../nanostack/mbed-mesh-api/source/include/wisun_tasklet.h | 1 + .../source/Service_Libs/mdns/fnet/fnet_stack/fnet_config.h | 1 + .../Service_Libs/mdns/fnet/fnet_stack/port/compiler/fnet_comp.h | 1 + .../mdns/fnet/fnet_stack/port/compiler/fnet_comp_config.h | 1 + .../Service_Libs/mdns/fnet/fnet_stack/services/fnet_services.h | 1 + .../mdns/fnet/fnet_stack/services/fnet_services_config.h | 1 + .../Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.c | 1 + .../Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.h | 1 + .../Service_Libs/mdns/fnet/fnet_stack/services/poll/fnet_poll.c | 1 + .../mdns/fnet/fnet_stack/services/serial/fnet_serial.h | 1 + .../source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_debug.h | 1 + .../source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_stdlib.c | 1 + connectivity/netsocket/include/netsocket/CellularNonIPSocket.h | 1 + connectivity/netsocket/include/netsocket/DNS.h | 1 + connectivity/netsocket/include/netsocket/EMAC.h | 1 + connectivity/netsocket/include/netsocket/EMACInterface.h | 1 + connectivity/netsocket/include/netsocket/EMACMemoryManager.h | 1 + connectivity/netsocket/include/netsocket/EthInterface.h | 1 + connectivity/netsocket/include/netsocket/EthernetInterface.h | 1 + connectivity/netsocket/include/netsocket/ICMPSocket.h | 1 + .../netsocket/include/netsocket/InternetDatagramSocket.h | 1 + connectivity/netsocket/include/netsocket/InternetSocket.h | 1 + connectivity/netsocket/include/netsocket/MeshInterface.h | 1 + connectivity/netsocket/include/netsocket/NetworkInterface.h | 1 + connectivity/netsocket/include/netsocket/NetworkStack.h | 1 + connectivity/netsocket/include/netsocket/OnboardNetworkStack.h | 1 + connectivity/netsocket/include/netsocket/Socket.h | 1 + connectivity/netsocket/include/netsocket/SocketAddress.h | 1 + connectivity/netsocket/include/netsocket/SocketStats.h | 1 + connectivity/netsocket/include/netsocket/TCPSocket.h | 1 + connectivity/netsocket/include/netsocket/UDPSocket.h | 1 + connectivity/netsocket/include/netsocket/WiFiAccessPoint.h | 1 + connectivity/netsocket/include/netsocket/WiFiInterface.h | 1 + connectivity/netsocket/include/netsocket/nsapi.h | 1 + connectivity/netsocket/include/netsocket/nsapi_dns.h | 1 + connectivity/netsocket/include/netsocket/nsapi_ppp.h | 1 + connectivity/netsocket/include/netsocket/nsapi_types.h | 1 + connectivity/netsocket/source/CellularNonIPSocket.cpp | 1 + connectivity/netsocket/source/EMACInterface.cpp | 1 + connectivity/netsocket/source/EthernetInterface.cpp | 1 + connectivity/netsocket/source/ICMPSocket.cpp | 1 + connectivity/netsocket/source/InternetDatagramSocket.cpp | 1 + connectivity/netsocket/source/InternetSocket.cpp | 1 + connectivity/netsocket/source/NetworkInterface.cpp | 1 + connectivity/netsocket/source/NetworkInterfaceDefaults.cpp | 1 + connectivity/netsocket/source/NetworkStack.cpp | 1 + connectivity/netsocket/source/SocketAddress.cpp | 1 + connectivity/netsocket/source/SocketStats.cpp | 1 + connectivity/netsocket/source/TCPSocket.cpp | 1 + connectivity/netsocket/source/UDPSocket.cpp | 1 + connectivity/netsocket/source/nsapi_dns.cpp | 1 + connectivity/netsocket/source/nsapi_ppp.cpp | 1 + connectivity/nfc/include/nfc/NFC.h | 1 + connectivity/nfc/include/nfc/NFCController.h | 1 + connectivity/nfc/include/nfc/NFCControllerDriver.h | 1 + connectivity/nfc/include/nfc/NFCDefinitions.h | 1 + connectivity/nfc/include/nfc/NFCEEPROM.h | 1 + connectivity/nfc/include/nfc/NFCEEPROMDriver.h | 1 + connectivity/nfc/include/nfc/NFCNDEFCapable.h | 1 + connectivity/nfc/include/nfc/NFCRemoteEndpoint.h | 1 + connectivity/nfc/include/nfc/NFCRemoteInitiator.h | 1 + connectivity/nfc/include/nfc/NFCTarget.h | 1 + connectivity/nfc/include/nfc/Type4RemoteInitiator.h | 1 + connectivity/nfc/include/nfc/ndef/MessageBuilder.h | 1 + connectivity/nfc/include/nfc/ndef/MessageParser.h | 1 + connectivity/nfc/include/nfc/ndef/Record.h | 1 + connectivity/nfc/include/nfc/ndef/RecordParser.h | 1 + connectivity/nfc/include/nfc/ndef/common/Mime.h | 1 + connectivity/nfc/include/nfc/ndef/common/SimpleMessageParser.h | 1 + connectivity/nfc/include/nfc/ndef/common/Text.h | 1 + connectivity/nfc/include/nfc/ndef/common/URI.h | 1 + connectivity/nfc/include/nfc/ndef/common/util.h | 1 + connectivity/nfc/source/NFCController.cpp | 1 + connectivity/nfc/source/NFCControllerDriver.cpp | 1 + connectivity/nfc/source/NFCEEPROM.cpp | 1 + connectivity/nfc/source/NFCEEPROMDriver.cpp | 1 + connectivity/nfc/source/NFCNDEFCapable.cpp | 1 + connectivity/nfc/source/NFCRemoteEndpoint.cpp | 1 + connectivity/nfc/source/NFCRemoteInitiator.cpp | 1 + connectivity/nfc/source/NFCTarget.cpp | 1 + connectivity/nfc/source/Type4RemoteInitiator.cpp | 1 + connectivity/nfc/source/ndef/MessageBuilder.cpp | 1 + connectivity/nfc/source/ndef/MessageParser.cpp | 1 + connectivity/nfc/source/ndef/RecordParser.cpp | 1 + connectivity/nfc/source/ndef/common/Mime.cpp | 1 + connectivity/nfc/source/ndef/common/SimpleMessageParser.cpp | 1 + connectivity/nfc/source/ndef/common/Text.cpp | 1 + connectivity/nfc/source/ndef/common/URI.cpp | 1 + connectivity/nfc/source/ndef/common/util.cpp | 1 + drivers/device_key/include/device_key/DeviceKey.h | 1 + drivers/device_key/source/DeviceKey.cpp | 1 + drivers/device_key/tests/TESTS/device_key/functionality/main.cpp | 1 + events/include/events/equeue.h | 1 + events/include/events/internal/equeue_platform.h | 1 + events/include/events/mbed_shared_queues.h | 1 + events/source/equeue.c | 1 + events/source/equeue_mbed.cpp | 1 + events/source/equeue_posix.c | 1 + events/source/mbed_shared_queues.cpp | 1 + events/tests/unit/prof.c | 1 + features/frameworks/utest/TESTS/unit_tests/basic_test/main.cpp | 1 + .../utest/TESTS/unit_tests/basic_test_default/main.cpp | 1 + .../utest/TESTS/unit_tests/case_async_validate/main.cpp | 1 + .../utest/TESTS/unit_tests/case_control_async/main.cpp | 1 + .../utest/TESTS/unit_tests/case_control_repeat/main.cpp | 1 + .../frameworks/utest/TESTS/unit_tests/case_selection/main.cpp | 1 + .../utest/TESTS/unit_tests/case_setup_failure/main.cpp | 1 + .../utest/TESTS/unit_tests/case_teardown_failure/main.cpp | 1 + features/frameworks/utest/TESTS/unit_tests/control_type/main.cpp | 1 + .../utest/TESTS/unit_tests/minimal_async_scheduler/main.cpp | 1 + .../frameworks/utest/TESTS/unit_tests/minimal_scheduler/main.cpp | 1 + .../TESTS/unit_tests/test_assertion_failure_test_setup/main.cpp | 1 + .../TESTS/unit_tests/test_setup_case_selection_failure/main.cpp | 1 + .../utest/TESTS/unit_tests/test_setup_failure/main.cpp | 1 + features/frameworks/utest/mbed-utest-shim.cpp | 1 + mbed.h | 1 + storage/blockdevice/include/blockdevice/BlockDevice.h | 1 + storage/blockdevice/source/BufferedBlockDevice.cpp | 1 + storage/blockdevice/source/ChainingBlockDevice.cpp | 1 + storage/blockdevice/source/ExhaustibleBlockDevice.cpp | 1 + storage/blockdevice/source/FlashSimBlockDevice.cpp | 1 + storage/blockdevice/source/HeapBlockDevice.cpp | 1 + storage/blockdevice/source/MBRBlockDevice.cpp | 1 + storage/blockdevice/source/ProfilingBlockDevice.cpp | 1 + storage/blockdevice/source/SlicingBlockDevice.cpp | 1 + .../tests/TESTS/blockdevice/buffered_block_device/main.cpp | 1 + .../tests/TESTS/blockdevice/flashsim_block_device/main.cpp | 1 + .../tests/TESTS/blockdevice/heap_block_device/main.cpp | 1 + .../tests/TESTS/blockdevice/mbr_block_device/main.cpp | 1 + .../tests/TESTS/blockdevice/util_block_device/main.cpp | 1 + storage/filesystem/fat/tests/TESTS/fat/fat_filesystem/main.cpp | 1 + .../fat/tests/TESTS/fat/multipart_fat_filesystem/main.cpp | 1 + storage/filesystem/include/filesystem/Dir.h | 1 + storage/filesystem/include/filesystem/File.h | 1 + storage/filesystem/include/filesystem/FileSystem.h | 1 + storage/filesystem/include/filesystem/mbed_filesystem.h | 1 + storage/filesystem/littlefs/include/littlefs/LittleFileSystem.h | 1 + storage/filesystem/littlefs/source/LittleFileSystem.cpp | 1 + storage/filesystem/littlefs/tests/TESTS/filesystem/dirs/main.cpp | 1 + .../filesystem/littlefs/tests/TESTS/filesystem/files/main.cpp | 1 + .../littlefs/tests/TESTS/filesystem/interspersed/main.cpp | 1 + storage/filesystem/littlefs/tests/TESTS/filesystem/seek/main.cpp | 1 + .../littlefs/tests/TESTS/filesystem_integration/format/main.cpp | 1 + .../littlefs/tests/TESTS/filesystem_recovery/resilience/main.cpp | 1 + .../TESTS/filesystem_recovery/resilience_functional/main.cpp | 1 + .../tests/TESTS/filesystem_recovery/wear_leveling/main.cpp | 1 + .../littlefs/tests/TESTS/filesystem_retarget/dirs/main.cpp | 1 + .../littlefs/tests/TESTS/filesystem_retarget/files/main.cpp | 1 + .../tests/TESTS/filesystem_retarget/interspersed/main.cpp | 1 + .../littlefs/tests/TESTS/filesystem_retarget/seek/main.cpp | 1 + .../filesystem/littlefsv2/include/littlefsv2/LittleFileSystem2.h | 1 + storage/filesystem/littlefsv2/source/LittleFileSystem2.cpp | 1 + .../filesystem/littlefsv2/tests/TESTS/filesystem/dirs/main.cpp | 1 + .../filesystem/littlefsv2/tests/TESTS/filesystem/files/main.cpp | 1 + .../littlefsv2/tests/TESTS/filesystem/interspersed/main.cpp | 1 + .../filesystem/littlefsv2/tests/TESTS/filesystem/seek/main.cpp | 1 + .../tests/TESTS/filesystem_integration/format/main.cpp | 1 + .../tests/TESTS/filesystem_recovery/resilience/main.cpp | 1 + .../TESTS/filesystem_recovery/resilience_functional/main.cpp | 1 + .../tests/TESTS/filesystem_recovery/wear_leveling/main.cpp | 1 + .../littlefsv2/tests/TESTS/filesystem_retarget/dirs/main.cpp | 1 + .../littlefsv2/tests/TESTS/filesystem_retarget/files/main.cpp | 1 + .../tests/TESTS/filesystem_retarget/interspersed/main.cpp | 1 + .../littlefsv2/tests/TESTS/filesystem_retarget/seek/main.cpp | 1 + storage/filesystem/source/Dir.cpp | 1 + storage/filesystem/source/File.cpp | 1 + storage/filesystem/source/FileSystem.cpp | 1 + .../tests/TESTS/filesystem/general_filesystem/main.cpp | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/FVP_MPS2.h | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PeripheralNames.h | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PinNames.h | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PortNames.h | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/SDK/fpga.c | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/SDK/fpga.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/CMSDK_CM0.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/cmsis.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/cmsis_nvic.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/peripherallink.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/system_CMSDK_CM0.c | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/system_CMSDK_CM0.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/CMSDK_CM0plus.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/cmsis.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/cmsis_nvic.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/peripherallink.h | 1 + .../TARGET_FVP_MPS2_M0P/device/system_CMSDK_CM0plus.c | 1 + .../TARGET_FVP_MPS2_M0P/device/system_CMSDK_CM0plus.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/CMSDK_CM3.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/cmsis.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/cmsis_nvic.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/peripherallink.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/system_CMSDK_CM3.c | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/system_CMSDK_CM3.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/CMSDK_CM4.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/cmsis.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/cmsis_nvic.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/peripherallink.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/system_CMSDK_CM4.c | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/system_CMSDK_CM4.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/CMSDK_CM7.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/cmsis.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/cmsis_nvic.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/peripherallink.h | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/system_CMSDK_CM7.c | 1 + .../TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/system_CMSDK_CM7.h | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/analogin_api.c | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/device.h | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/drivers/lan91c111.c | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/drivers/lan91c111.h | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/flash_api.c | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_api.c | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_irq_api.c | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_object.h | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/i2c_api.c | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/objects.h | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/pinmap.c | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/port_api.c | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/serial_api.c | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/spi_api.c | 1 + targets/TARGET_ARM_FM/TARGET_FVP_MPS2/spi_def.h | 1 + targets/TARGET_ARM_FM/mbed_rtx.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PeripheralNames.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PinNames.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PortNames.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/analogin_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/cmsdk_ticker.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/cmsdk_ticker.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/cmsis.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/cmsis_nvic.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/device_cfg.h | 1 + .../TARGET_CM3DS_MPS2/device/drivers/arm_gpio_drv.c | 1 + .../TARGET_CM3DS_MPS2/device/drivers/arm_gpio_drv.h | 1 + .../TARGET_CM3DS_MPS2/device/drivers/arm_mps2_io_drv.c | 1 + .../TARGET_CM3DS_MPS2/device/drivers/arm_mps2_io_drv.h | 1 + .../TARGET_CM3DS_MPS2/device/drivers/arm_uart_drv.c | 1 + .../TARGET_CM3DS_MPS2/device/drivers/arm_uart_drv.h | 1 + .../TARGET_CM3DS_MPS2/device/drivers/dualtimer_cmsdk_drv.c | 1 + .../TARGET_CM3DS_MPS2/device/drivers/dualtimer_cmsdk_drv.h | 1 + .../TARGET_CM3DS_MPS2/device/drivers/rtc_pl031_drv.c | 1 + .../TARGET_CM3DS_MPS2/device/drivers/rtc_pl031_drv.h | 1 + .../TARGET_CM3DS_MPS2/device/drivers/smsc9220_eth_drv.c | 1 + .../TARGET_CM3DS_MPS2/device/drivers/smsc9220_eth_drv.h | 1 + .../TARGET_CM3DS_MPS2/device/drivers/spi_pl022_drv.c | 1 + .../TARGET_CM3DS_MPS2/device/drivers/spi_pl022_drv.h | 1 + .../device/drivers/timer_cmsdk/timer_cmsdk_drv.c | 1 + .../device/drivers/timer_cmsdk/timer_cmsdk_drv.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/memory_zones.h | 1 + .../TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/platform_devices.c | 1 + .../TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/platform_devices.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/flash_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_irq_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_objects.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/i2c_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/lp_ticker.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/mbed_overrides.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/objects.h | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/pinmap.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/port_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/rtc_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/serial_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/sleep_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/spi_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/trng_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/us_ticker.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/PeripheralNames.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/PinNames.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/PortNames.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/ETH_MPS2.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/ETH_MPS2.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/fpga.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/fpga.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/mps2_ethernet_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/mps2_ethernet_api.h | 1 + .../TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/CMSDK_CM0.h | 1 + .../TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/SMM_MPS2.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M0/device/cmsis_nvic.c | 1 + .../TARGET_MPS2/TARGET_MPS2_M0/device/cmsis_nvic.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M0/device/peripherallink.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M0/device/system_CMSDK_CM0.c | 1 + .../TARGET_MPS2/TARGET_MPS2_M0/device/system_CMSDK_CM0.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M0P/device/CMSDK_CM0plus.h | 1 + .../TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/SMM_MPS2.h | 1 + .../TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/cmsis.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M0P/device/cmsis_nvic.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M0P/device/peripherallink.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M0P/device/system_CMSDK_CM0plus.c | 1 + .../TARGET_MPS2/TARGET_MPS2_M0P/device/system_CMSDK_CM0plus.h | 1 + .../TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/CMSDK_CM3.h | 1 + .../TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/SMM_MPS2.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/cmsis.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M3/device/cmsis_nvic.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M3/device/peripherallink.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M3/device/system_CMSDK_CM3.c | 1 + .../TARGET_MPS2/TARGET_MPS2_M3/device/system_CMSDK_CM3.h | 1 + .../TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/CMSDK_CM4.h | 1 + .../TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/SMM_MPS2.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/cmsis.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M4/device/cmsis_nvic.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M4/device/peripherallink.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M4/device/system_CMSDK_CM4.c | 1 + .../TARGET_MPS2/TARGET_MPS2_M4/device/system_CMSDK_CM4.h | 1 + .../TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/CMSDK_CM7.h | 1 + .../TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/SMM_MPS2.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/cmsis.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M7/device/cmsis_nvic.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M7/device/peripherallink.h | 1 + .../TARGET_MPS2/TARGET_MPS2_M7/device/system_CMSDK_CM7.c | 1 + .../TARGET_MPS2/TARGET_MPS2_M7/device/system_CMSDK_CM7.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/analogin_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/device.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_irq_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_object.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/i2c_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/objects.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/pinmap.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/port_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/serial_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/spi_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/spi_def.h | 1 + targets/TARGET_ARM_SSG/TARGET_MPS2/us_ticker.c | 1 + targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/cmsis.h | 1 + .../TARGET_ARM_SSG/TARGET_MUSCA_B1/device/device_definition.c | 1 + .../TARGET_ARM_SSG/TARGET_MUSCA_B1/device/device_definition.h | 1 + .../TARGET_MUSCA_B1/device/drivers/gpio_cmsdk_drv.c | 1 + .../TARGET_MUSCA_B1/device/drivers/gpio_cmsdk_drv.h | 1 + .../TARGET_MUSCA_B1/device/drivers/i2c_ip6510_drv.c | 1 + .../TARGET_MUSCA_B1/device/drivers/i2c_ip6510_drv.h | 1 + .../TARGET_MUSCA_B1/device/drivers/musca_b1_scc_drv.c | 1 + .../TARGET_MUSCA_B1/device/drivers/musca_b1_scc_drv.h | 1 + .../TARGET_MUSCA_B1/device/drivers/timer_cmsdk_drv.c | 1 + .../TARGET_MUSCA_B1/device/drivers/timer_cmsdk_drv.h | 1 + .../TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_gp_drv.c | 1 + .../TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_gp_drv.h | 1 + .../TARGET_MUSCA_B1/device/drivers/uart_pl011_drv.c | 1 + .../TARGET_MUSCA_B1/device/drivers/uart_pl011_drv.h | 1 + .../TARGET_MUSCA_B1/device/platform_base_address.h | 1 + .../TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_description.h | 1 + targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_irq.h | 1 + targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_pins.h | 1 + targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_regs.h | 1 + targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/system_core_init.c | 1 + targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/system_core_init.h | 1 + targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/i2c_api.c | 1 + targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/lp_ticker.c | 1 + targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/mbed_serial_platform.c | 1 + targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/pinmap_ns.c | 1 + targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/serial_api.c | 1 + targets/TARGET_Analog_Devices/mbed_rtx.h | 1 + .../device/COMPONENT_CM4/device_definition.c | 1 + .../device/COMPONENT_CM4/device_definition.h | 1 + .../device/COMPONENT_CM4/platform_base_address.h | 1 + .../device/COMPONENT_CM4/platform_irq.h | 1 + .../TARGET_CYTFM_064B0S2_4343W/partition/flash_layout.h | 1 + .../TARGET_CYTFM_064B0S2_4343W/partition/region_defs.h | 1 + targets/TARGET_Freescale/TARGET_K20XX/PeripheralPins.h | 1 + targets/TARGET_Freescale/TARGET_K20XX/PortNames.h | 1 + targets/TARGET_Freescale/TARGET_K20XX/analogin_api.c | 1 + targets/TARGET_Freescale/TARGET_K20XX/analogout_api.c | 1 + targets/TARGET_Freescale/TARGET_K20XX/clk_freqs.h | 1 + targets/TARGET_Freescale/TARGET_K20XX/gpio_api.c | 1 + targets/TARGET_Freescale/TARGET_K20XX/gpio_irq_api.c | 1 + targets/TARGET_Freescale/TARGET_K20XX/gpio_object.h | 1 + targets/TARGET_Freescale/TARGET_K20XX/i2c_api.c | 1 + targets/TARGET_Freescale/TARGET_K20XX/objects.h | 1 + targets/TARGET_Freescale/TARGET_K20XX/pinmap.c | 1 + targets/TARGET_Freescale/TARGET_K20XX/port_api.c | 1 + targets/TARGET_Freescale/TARGET_K20XX/pwmout_api.c | 1 + targets/TARGET_Freescale/TARGET_K20XX/rtc_api.c | 1 + targets/TARGET_Freescale/TARGET_K20XX/serial_api.c | 1 + targets/TARGET_Freescale/TARGET_K20XX/sleep.c | 1 + targets/TARGET_Freescale/TARGET_K20XX/spi_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/PeripheralPins.h | 1 + targets/TARGET_Freescale/TARGET_KLXX/PortNames.h | 1 + .../TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PeripheralNames.h | 1 + .../TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PeripheralPins.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PinNames.h | 1 + targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/device.h | 1 + targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/gpio_irq_api.c | 1 + .../TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/mbed_overrides.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/serial_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/spi_api.c | 1 + .../TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PeripheralNames.h | 1 + .../TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PeripheralPins.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PinNames.h | 1 + targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/device.h | 1 + targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/flash_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/gpio_irq_api.c | 1 + .../TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/mbed_overrides.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/serial_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/spi_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/analogin_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/analogout_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/clk_freqs.h | 1 + targets/TARGET_Freescale/TARGET_KLXX/gpio_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/gpio_object.h | 1 + targets/TARGET_Freescale/TARGET_KLXX/i2c_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/objects.h | 1 + targets/TARGET_Freescale/TARGET_KLXX/pinmap.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/port_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/pwmout_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/rtc_api.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/sleep.c | 1 + targets/TARGET_Freescale/TARGET_KLXX/us_ticker.c | 1 + .../TARGET_K66F/TARGET_FRDM/PeripheralNames.h | 1 + .../TARGET_K66F/TARGET_FRDM/PeripheralPins.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PinNames.h | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/device.h | 1 + .../TARGET_K66F/TARGET_FRDM/mbed_overrides.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K66F/pwmout_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K66F/serial_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K66F/spi_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K66F/us_ticker.c | 1 + .../TARGET_K82F/TARGET_FRDM/PeripheralNames.h | 1 + .../TARGET_K82F/TARGET_FRDM/PeripheralPins.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PinNames.h | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/device.h | 1 + .../TARGET_K82F/TARGET_FRDM/mbed_overrides.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K82F/pwmout_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K82F/serial_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K82F/spi_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_K82F/us_ticker.c | 1 + .../TARGET_KL27Z/TARGET_FRDM/PeripheralNames.h | 1 + .../TARGET_KL27Z/TARGET_FRDM/PeripheralPins.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PinNames.h | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/device.h | 1 + .../TARGET_KL27Z/TARGET_FRDM/mbed_overrides.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL27Z/pwmout_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL27Z/serial_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL27Z/spi_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL27Z/us_ticker.c | 1 + .../TARGET_KL43Z/TARGET_FRDM/PeripheralNames.h | 1 + .../TARGET_KL43Z/TARGET_FRDM/PeripheralPins.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PinNames.h | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/device.h | 1 + .../TARGET_KL43Z/TARGET_FRDM/mbed_overrides.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL43Z/pwmout_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL43Z/serial_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL43Z/spi_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KL43Z/us_ticker.c | 1 + .../TARGET_KW41Z/TARGET_FRDM/PeripheralNames.h | 1 + .../TARGET_KW41Z/TARGET_FRDM/PeripheralPins.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PinNames.h | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/device.h | 1 + .../TARGET_KW41Z/TARGET_FRDM/mbed_overrides.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KW41Z/pwmout_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KW41Z/serial_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KW41Z/spi_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_KW41Z/us_ticker.c | 1 + .../TARGET_MCU_K22F512/TARGET_FRDM/PeripheralNames.h | 1 + .../TARGET_MCU_K22F512/TARGET_FRDM/PeripheralPins.c | 1 + .../TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PinNames.h | 1 + .../TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/device.h | 1 + .../TARGET_MCU_K22F512/TARGET_FRDM/mbed_overrides.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/pwmout_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/serial_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/spi_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/us_ticker.c | 1 + .../TARGET_MCU_K64F/TARGET_FRDM/PeripheralNames.h | 1 + .../TARGET_MCU_K64F/TARGET_FRDM/PeripheralPinMaps.h | 1 + .../TARGET_MCU_K64F/TARGET_FRDM/PeripheralPins.c | 1 + .../TARGET_MCU_K64F/TARGET_FRDM/PinNames.h | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/device.h | 1 + .../TARGET_MCU_K64F/TARGET_FRDM/mbed_overrides.c | 1 + .../TARGET_MCU_K64F/TARGET_HEXIWEAR/PeripheralNames.h | 1 + .../TARGET_MCU_K64F/TARGET_HEXIWEAR/PeripheralPins.c | 1 + .../TARGET_MCU_K64F/TARGET_HEXIWEAR/PinNames.h | 1 + .../TARGET_MCU_K64F/TARGET_HEXIWEAR/device.h | 1 + .../TARGET_MCU_K64F/TARGET_HEXIWEAR/mbed_overrides.c | 1 + .../TARGET_MCU_K64F/TARGET_SDT64B/PeripheralNames.h | 1 + .../TARGET_MCU_K64F/TARGET_SDT64B/PeripheralPins.c | 1 + .../TARGET_MCU_K64F/TARGET_SDT64B/PinNames.h | 1 + .../TARGET_MCU_K64F/TARGET_SDT64B/device.h | 1 + .../TARGET_MCU_K64F/TARGET_SDT64B/mbed_overrides.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/mbed_crc_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/pwmout_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/reset_reason.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/serial_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/spi_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/us_ticker.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/watchdog_api.c | 1 + .../TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/PeripheralPins.h | 1 + targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/PortNames.h | 1 + .../TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogin_api.c | 1 + .../TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogout_api.c | 1 + targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_api.c | 1 + .../TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_irq_api.c | 1 + .../TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_object.h | 1 + targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/i2c_api.c | 1 + targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/lp_ticker.c | 1 + targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/objects.h | 1 + targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/pinmap.c | 1 + targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/port_api.c | 1 + targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/rtc_api.c | 1 + targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/sleep.c | 1 + targets/TARGET_Freescale/USBEndpoints_Kinetis.h | 1 + targets/TARGET_Freescale/USBPhyHw.h | 1 + targets/TARGET_Freescale/USBPhy_Kinetis.cpp | 1 + targets/TARGET_Freescale/mbed_rtx.h | 1 + targets/TARGET_Maxim/TARGET_MAX32600/device/device_nvic.c | 1 + targets/TARGET_Maxim/TARGET_MAX32610/device/device_nvic.c | 1 + targets/TARGET_Maxim/TARGET_MAX32620/device/device_nvic.c | 1 + targets/TARGET_Maxim/TARGET_MAX32620C/device/device_nvic.c | 1 + targets/TARGET_Maxim/TARGET_MAX32625/device/device_nvic.c | 1 + targets/TARGET_Maxim/TARGET_MAX32630/device/device_nvic.c | 1 + targets/TARGET_Maxim/mbed_rtx.h | 1 + .../TARGET_NRF52/TARGET_MCU_NRF52832/TARGET_NRF52_DK/device.h | 1 + .../TARGET_NRF52/TARGET_MCU_NRF52832/TARGET_SDT52832B/device.h | 1 + .../TARGET_NRF52/TARGET_MCU_NRF52840/PeripheralPinMaps.h | 1 + .../TARGET_MCU_NRF52840/TARGET_ARDUINO_NANO33BLE/device.h | 1 + .../TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_EP_ATLAS/device.h | 1 + .../TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_NRF52840_DK/device.h | 1 + targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/itm_api.c | 1 + targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/object_owners.h | 1 + targets/TARGET_NORDIC/TARGET_NRF5x/gpio_object.h | 1 + targets/TARGET_NORDIC/TARGET_NRF5x/lp_ticker.c | 1 + targets/TARGET_NORDIC/TARGET_NRF5x/pinmap.c | 1 + targets/TARGET_NORDIC/mbed_rtx.h | 1 + targets/TARGET_NUVOTON/mbed_rtx.h | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/PeripheralNames.h | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/PinNames.h | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/PortNames.h | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/analogin_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/device.h | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/gpio_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/gpio_irq_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/gpio_object.h | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/i2c_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/objects.h | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/pinmap.c | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/pwmout_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/rtc_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/serial_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/sleep.c | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/spi_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11U6X/us_ticker.c | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/PeripheralNames.h | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/PortNames.h | 1 + .../TARGET_NXP/TARGET_LPC11XX_11CXX/TARGET_LPC11XX/PinNames.h | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/TARGET_LPC11XX/device.h | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/analogin_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_irq_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_object.h | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/i2c_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/objects.h | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/pinmap.c | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/port_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/pwmout_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/serial_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/sleep.c | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/spi_api.c | 1 + targets/TARGET_NXP/TARGET_LPC11XX_11CXX/us_ticker.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/PeripheralNames.h | 1 + targets/TARGET_NXP/TARGET_LPC176X/PortNames.h | 1 + targets/TARGET_NXP/TARGET_LPC176X/TARGET_ARCH_PRO/PinNames.h | 1 + targets/TARGET_NXP/TARGET_LPC176X/TARGET_ARCH_PRO/device.h | 1 + targets/TARGET_NXP/TARGET_LPC176X/TARGET_MBED_LPC1768/PinNames.h | 1 + targets/TARGET_NXP/TARGET_LPC176X/TARGET_MBED_LPC1768/device.h | 1 + targets/TARGET_NXP/TARGET_LPC176X/analogin_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/analogout_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/can_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/device/CRP.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/device/flash_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/gpio_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/gpio_irq_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/gpio_object.h | 1 + targets/TARGET_NXP/TARGET_LPC176X/i2c_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/objects.h | 1 + targets/TARGET_NXP/TARGET_LPC176X/pinmap.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/port_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/pwmout_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/rtc_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/serial_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/sleep.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/spi_api.c | 1 + targets/TARGET_NXP/TARGET_LPC176X/us_ticker.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_IMX/PeripheralPins.h | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/PortNames.h | 1 + .../TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/analogin_api.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_api.c | 1 + .../TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_irq_api.c | 1 + .../TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_object.h | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/i2c_api.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/lp_ticker.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/objects.h | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/pinmap.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/port_api.c | 1 + .../TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/pwmout_api.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/rtc_api.c | 1 + .../TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/serial_api.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/sleep.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/spi_api.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/us_ticker.c | 1 + .../TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/watchdog_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_LPC/PeripheralPins.h | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/PortNames.h | 1 + .../TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/analogin_api.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_api.c | 1 + .../TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_irq_api.c | 1 + .../TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_object.h | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/i2c_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_LPC/lp_analogin_api.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/objects.h | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/pinmap.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/port_api.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/rtc_api.c | 1 + .../TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/serial_api.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/sleep.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/spi_api.c | 1 + targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/us_ticker.c | 1 + .../TARGET_LPC54114/TARGET_LPCXpresso/PeripheralNames.h | 1 + .../TARGET_LPC54114/TARGET_LPCXpresso/PeripheralPins.c | 1 + .../TARGET_LPC54114/TARGET_LPCXpresso/PinNames.h | 1 + .../TARGET_LPC54114/TARGET_LPCXpresso/device.h | 1 + .../TARGET_LPC54114/TARGET_LPCXpresso/mbed_overrides.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_LPC54114/flash_api.c | 1 + .../TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralNames.h | 1 + .../TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralPinMaps.h | 1 + .../TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralPins.c | 1 + .../TARGET_LPC55S69/TARGET_LPCXpresso/PinNames.h | 1 + .../TARGET_LPC55S69/TARGET_LPCXpresso/device.h | 1 + .../TARGET_LPC55S69/TARGET_LPCXpresso/mbed_overrides.c | 1 + .../TARGET_LPC55S69/TARGET_M33_S/trng_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/flash_api.c | 1 + .../TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PeripheralNames.h | 1 + .../TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PeripheralPins.c | 1 + .../TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PinNames.h | 1 + .../TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/device.h | 1 + .../TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/mbed_overrides.c | 1 + .../TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PeripheralNames.h | 1 + .../TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PeripheralPins.c | 1 + .../TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PinNames.h | 1 + .../TARGET_MCU_LPC546XX/TARGET_LPCXpresso/device.h | 1 + .../TARGET_MCU_LPC546XX/TARGET_LPCXpresso/mbed_overrides.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/flash_api.c | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/trng_api.c | 1 + .../TARGET_MIMXRT1050/TARGET_EVK/PeripheralNames.h | 1 + .../TARGET_MIMXRT1050/TARGET_EVK/PeripheralPins.c | 1 + .../TARGET_MIMXRT1050/TARGET_EVK/PinNames.h | 1 + .../TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/device.h | 1 + targets/TARGET_NXP/USBEndpoints_LPC17_LPC23.h | 1 + targets/TARGET_NXP/USBHAL_LPC17.cpp | 1 + targets/TARGET_NXP/USBPhyHw.h | 1 + targets/TARGET_NXP/mbed_rtx.h | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/PeripheralPins.h | 1 + .../TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PeripheralNames.h | 1 + .../TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PeripheralPins.c | 1 + .../TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PinNames.h | 1 + .../TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PortNames.h | 1 + .../TARGET_GR_LYCHEE/TARGET_MBED_MBRZA1LU/reserved_pins.h | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device.h | 1 + .../TARGET_RZ_A1XX/TARGET_GR_LYCHEE/mbed_drv_cfg.h | 1 + .../TARGET_RZ_A1XX/TARGET_GR_LYCHEE/trng_api_esp32.cpp | 1 + .../TARGET_RZ_A1XX/TARGET_RZ_A1H/PeripheralNames.h | 1 + .../TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PeripheralPins.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PinNames.h | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PortNames.h | 1 + .../TARGET_RZ_A1H/TARGET_MBED_MBRZA1H/reserved_pins.h | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device.h | 1 + .../TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/mbed_drv_cfg.h | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/analogin_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/can_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/flash_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_irq_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_object.h | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/i2c_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/lp_ticker.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/mtu2.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/mtu2.h | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/objects.h | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/pinmap.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/port_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/pwmout_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/rtc_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/serial_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/sleep.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/spi_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/trng_api.c | 1 + targets/TARGET_RENESAS/TARGET_RZ_A1XX/us_ticker.c | 1 + targets/TARGET_RENESAS/mbed_rtx.h | 1 + .../TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/system_clock.c | 1 + .../TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/us_ticker_data.h | 1 + .../TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/system_clock.c | 1 + .../TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/us_ticker_data.h | 1 + .../TARGET_STM32F0/TARGET_STM32F091xC/device/system_clock.c | 1 + .../TARGET_STM32F0/TARGET_STM32F091xC/device/us_ticker_data.h | 1 + targets/TARGET_STM/TARGET_STM32F0/can_device.h | 1 + .../TARGET_STM/TARGET_STM32F1/TARGET_STM32F103x8/system_clock.c | 1 + .../TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xB/system_clock.c | 1 + targets/TARGET_STM/TARGET_STM32F1/can_device.h | 1 + targets/TARGET_STM/TARGET_STM32F1/us_ticker_data.h | 1 + .../TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/system_clock.c | 1 + .../TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/us_ticker_data.h | 1 + targets/TARGET_STM/TARGET_STM32F2/can_device.h | 1 + .../TARGET_STM32F3/TARGET_STM32F302x8/device/us_ticker_data.h | 1 + .../TARGET_STM32F303x8/TARGET_NUCLEO_F303K8/system_clock.c | 1 + .../TARGET_STM32F3/TARGET_STM32F303x8/device/us_ticker_data.h | 1 + .../TARGET_STM32F3/TARGET_STM32F303xC/device/us_ticker_data.h | 1 + .../TARGET_STM32F303xE/TARGET_NUCLEO_F303RE/system_clock.c | 1 + .../TARGET_STM32F303xE/TARGET_NUCLEO_F303ZE/system_clock.c | 1 + .../TARGET_STM32F3/TARGET_STM32F303xE/device/us_ticker_data.h | 1 + .../TARGET_STM32F3/TARGET_STM32F334x8/device/us_ticker_data.h | 1 + targets/TARGET_STM/TARGET_STM32F3/can_device.h | 1 + .../TARGET_MTS_DRAGONFLY_F411RE/ONBOARD_TELIT_HE910.cpp | 1 + .../TARGET_MTS_DRAGONFLY_F411RE/ONBOARD_TELIT_HE910.h | 1 + .../TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/system_clock.c | 1 + .../TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/us_ticker_data.h | 1 + .../TARGET_STM32F4/TARGET_MTS_MDOT_F411RE/system_clock.c | 1 + .../TARGET_STM32F4/TARGET_MTS_MDOT_F411RE/us_ticker_data.h | 1 + .../TARGET_STM32F4/TARGET_STM32F401xC/us_ticker_data.h | 1 + .../TARGET_STM32F401xE/TARGET_NUCLEO_F401RE/system_clock.c | 1 + .../TARGET_STM32F4/TARGET_STM32F401xE/us_ticker_data.h | 1 + .../TARGET_STM32F4/TARGET_STM32F407xG/us_ticker_data.h | 1 + .../TARGET_STM32F4/TARGET_STM32F410xB/us_ticker_data.h | 1 + .../TARGET_STM32F411xE/TARGET_NUCLEO_F411RE/system_clock.c | 1 + .../TARGET_STM32F4/TARGET_STM32F411xE/us_ticker_data.h | 1 + .../TARGET_STM32F412xG/TARGET_NUCLEO_F412ZG/PeripheralNames.h | 1 + .../TARGET_STM32F412xG/TARGET_WIO_EMW3166/PeripheralNames.h | 1 + .../TARGET_STM32F412xG/TARGET_WIO_EMW3166/PeripheralPins.c | 1 + .../TARGET_STM32F412xG/TARGET_WIO_EMW3166/PinNames.h | 1 + targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/objects.h | 1 + .../TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/system_clock.c | 1 + .../TARGET_STM32F4/TARGET_STM32F412xG/us_ticker_data.h | 1 + .../TARGET_STM32F413xH/TARGET_DISCO_F413ZH/PeripheralNames.h | 1 + .../TARGET_STM32F413xH/TARGET_DISCO_F413ZH/system_clock.c | 1 + .../TARGET_MTS_DRAGONFLY_F413RH/ONBOARD_TELIT_HE910.cpp | 1 + .../TARGET_MTS_DRAGONFLY_F413RH/ONBOARD_TELIT_HE910.h | 1 + .../TARGET_MTS_DRAGONFLY_F413RH/PeripheralNames.h | 1 + .../TARGET_MTS_DRAGONFLY_F413RH/system_clock.c | 1 + .../TARGET_STM32F413xH/TARGET_NUCLEO_F413ZH/PeripheralNames.h | 1 + .../TARGET_STM32F413xH/TARGET_NUCLEO_F413ZH/system_clock.c | 1 + targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/objects.h | 1 + .../TARGET_STM32F4/TARGET_STM32F413xH/us_ticker_data.h | 1 + .../TARGET_STM32F429xI/TARGET_DISCO_F429ZI/system_clock.c | 1 + .../TARGET_STM32F429xI/TARGET_NUCLEO_F429ZI/system_clock.c | 1 + .../TARGET_STM32F4/TARGET_STM32F429xI/us_ticker_data.h | 1 + .../TARGET_STM32F4/TARGET_STM32F437xG/us_ticker_data.h | 1 + .../TARGET_STM32F439xI/TARGET_NUCLEO_F439ZI/system_clock.c | 1 + .../TARGET_STM32F439xI/TARGET_WIO_3G/ONBOARD_QUECTEL_UG96.cpp | 1 + .../TARGET_STM32F439xI/TARGET_WIO_3G/ONBOARD_QUECTEL_UG96.h | 1 + .../TARGET_STM32F439xI/TARGET_WIO_3G/system_clock.c | 1 + .../TARGET_STM32F439xI/TARGET_WIO_BG96/ONBOARD_QUECTEL_BG96.cpp | 1 + .../TARGET_STM32F439xI/TARGET_WIO_BG96/ONBOARD_QUECTEL_BG96.h | 1 + .../TARGET_STM32F4/TARGET_STM32F439xI/us_ticker_data.h | 1 + .../TARGET_STM32F446xE/TARGET_NUCLEO_F446RE/system_clock.c | 1 + .../TARGET_STM32F446xE/TARGET_NUCLEO_F446ZE/system_clock.c | 1 + .../TARGET_STM32F4/TARGET_STM32F446xE/us_ticker_data.h | 1 + .../TARGET_STM32F469xI/TARGET_DISCO_F469NI/system_clock.c | 1 + .../TARGET_STM32F4/TARGET_STM32F469xI/us_ticker_data.h | 1 + targets/TARGET_STM/TARGET_STM32F4/can_device.h | 1 + targets/TARGET_STM/TARGET_STM32F7/can_device.h | 1 + targets/TARGET_STM/TARGET_STM32F7/us_ticker_data.h | 1 + .../TARGET_STM32G474xx/TARGET_NUCLEO_G474RE/PeripheralNames.h | 1 + targets/TARGET_STM/TARGET_STM32G4/objects.h | 1 + targets/TARGET_STM/TARGET_STM32H7/us_ticker_data.h | 1 + .../TARGET_STM32L0/TARGET_NUCLEO_L073RZ/device/system_clock.c | 1 + .../TARGET_STM32L0/TARGET_NUCLEO_L073RZ/device/us_ticker_data.h | 1 + .../TARGET_STM32L0/TARGET_STM32L053x8/device/us_ticker_data.h | 1 + .../TARGET_STM32L072xZ/TARGET_DISCO_L072CZ_LRWAN1/system_clock.c | 1 + .../TARGET_STM32L0/TARGET_STM32L072xZ/device/us_ticker_data.h | 1 + .../TARGET_STM32L0/TARGET_STM32L0x2xZ/device/us_ticker_data.h | 1 + .../TARGET_STM32L1/TARGET_MOTE_L152RC/device/system_clock.c | 1 + .../TARGET_STM32L1/TARGET_MOTE_L152RC/device/us_ticker_data.h | 1 + .../TARGET_STM32L1/TARGET_NUCLEO_L152RE/device/system_clock.c | 1 + .../TARGET_STM32L1/TARGET_NUCLEO_L152RE/device/us_ticker_data.h | 1 + .../TARGET_STM32L1/TARGET_XDOT_L151CC/device/system_clock.c | 1 + .../TARGET_STM32L1/TARGET_XDOT_L151CC/device/us_ticker_data.h | 1 + .../TARGET_MTS_DRAGONFLY_L471QG/ONBOARD_SARA4_PPP.cpp | 1 + .../TARGET_MTS_DRAGONFLY_L471QG/ONBOARD_SARA4_PPP.h | 1 + .../TARGET_MTS_DRAGONFLY_L471QG/device/us_ticker_data.h | 1 + .../TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/system_clock.c | 1 + .../TARGET_MTS_DRAGONFLY_L471QG/ublox_low_level_api.c | 1 + .../TARGET_STM32L4/TARGET_STM32L432xC/device/us_ticker_data.h | 1 + .../TARGET_STM32L4/TARGET_STM32L433xC/device/us_ticker_data.h | 1 + .../TARGET_STM32L4/TARGET_STM32L443xC/device/us_ticker_data.h | 1 + .../TARGET_STM32L4/TARGET_STM32L452xE/device/us_ticker_data.h | 1 + .../TARGET_STM32L475xG/TARGET_DISCO_L475VG_IOT01A/system_clock.c | 1 + .../TARGET_STM32L4/TARGET_STM32L475xG/device/us_ticker_data.h | 1 + .../TARGET_STM32L476xG/TARGET_DISCO_L476VG/system_clock.c | 1 + .../TARGET_STM32L476xG/TARGET_NUCLEO_L476RG/system_clock.c | 1 + .../TARGET_STM32L4/TARGET_STM32L476xG/device/us_ticker_data.h | 1 + .../TARGET_ADV_WISE_1570/ONBOARD_QUECTEL_BC95.cpp | 1 + .../TARGET_ADV_WISE_1570/ONBOARD_QUECTEL_BC95.h | 1 + .../TARGET_STM32L486xG/TARGET_ADV_WISE_1570/system_clock.c | 1 + .../TARGET_STM32L486xG/TARGET_NUCLEO_L486RG/system_clock.c | 1 + .../TARGET_STM32L4/TARGET_STM32L486xG/device/us_ticker_data.h | 1 + .../TARGET_STM32L496xG/TARGET_DISCO_L496AG/system_clock.c | 1 + .../TARGET_STM32L496xG/TARGET_NUCLEO_L496ZG/system_clock.c | 1 + .../TARGET_STM32L4/TARGET_STM32L496xG/device/us_ticker_data.h | 1 + .../TARGET_STM32L4/TARGET_STM32L4R5xI/device/objects.h | 1 + .../TARGET_STM32L4/TARGET_STM32L4R5xI/device/us_ticker_data.h | 1 + .../TARGET_STM32L4/TARGET_STM32L4R9xI/device/us_ticker_data.h | 1 + targets/TARGET_STM/TARGET_STM32L4/can_device.h | 1 + targets/TARGET_STM/USBPhyHw.h | 1 + targets/TARGET_STM/USBPhy_STM32.cpp | 1 + targets/TARGET_STM/can_api.c | 1 + targets/TARGET_STM/hal_tick_overrides.c | 1 + targets/TARGET_STM/mbed_rtx.h | 1 + targets/TARGET_STM/nvic_addr.h | 1 + targets/TARGET_STM/reset_reason.c | 1 + targets/TARGET_STM/us_ticker.c | 1 + targets/TARGET_STM/watchdog_api.c | 1 + targets/TARGET_Silicon_Labs/TARGET_EFM32/itm_api.c | 1 + targets/TARGET_Silicon_Labs/mbed_rtx.h | 1 + targets/TARGET_TOSHIBA/TARGET_TMPM46B/pwmout_api.c | 1 + targets/TARGET_WICED/wiced_interface/WicedInterface.h | 1 + targets/TARGET_WICED/wiced_interface/wiced_emac.h | 1 + 873 files changed, 873 insertions(+) diff --git a/cmsis/device/RTE/include/RTE_Components.h b/cmsis/device/RTE/include/RTE_Components.h index f29a7721093..0335448697a 100644 --- a/cmsis/device/RTE/include/RTE_Components.h +++ b/cmsis/device/RTE/include/RTE_Components.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/FEATURE_BLE/include/ble/driver/CordioHCIDriver.h b/connectivity/FEATURE_BLE/include/ble/driver/CordioHCIDriver.h index 3fd186e8726..a32d1607beb 100644 --- a/connectivity/FEATURE_BLE/include/ble/driver/CordioHCIDriver.h +++ b/connectivity/FEATURE_BLE/include/ble/driver/CordioHCIDriver.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/FEATURE_BLE/include/ble/driver/CordioHCITransportDriver.h b/connectivity/FEATURE_BLE/include/ble/driver/CordioHCITransportDriver.h index 5db197aee5a..d3442ee5cb0 100644 --- a/connectivity/FEATURE_BLE/include/ble/driver/CordioHCITransportDriver.h +++ b/connectivity/FEATURE_BLE/include/ble/driver/CordioHCITransportDriver.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/FEATURE_BLE/include/ble/driver/H4TransportDriver.h b/connectivity/FEATURE_BLE/include/ble/driver/H4TransportDriver.h index 2142667be55..8fd14048b03 100644 --- a/connectivity/FEATURE_BLE/include/ble/driver/H4TransportDriver.h +++ b/connectivity/FEATURE_BLE/include/ble/driver/H4TransportDriver.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/FEATURE_BLE/source/cordio/TESTS/cordio_hci/driver/main.cpp b/connectivity/FEATURE_BLE/source/cordio/TESTS/cordio_hci/driver/main.cpp index e3630349867..44b944f525b 100644 --- a/connectivity/FEATURE_BLE/source/cordio/TESTS/cordio_hci/driver/main.cpp +++ b/connectivity/FEATURE_BLE/source/cordio/TESTS/cordio_hci/driver/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/FEATURE_BLE/source/cordio/TESTS/cordio_hci/transport/main.cpp b/connectivity/FEATURE_BLE/source/cordio/TESTS/cordio_hci/transport/main.cpp index f98a3e7f545..5345fd3fc5c 100644 --- a/connectivity/FEATURE_BLE/source/cordio/TESTS/cordio_hci/transport/main.cpp +++ b/connectivity/FEATURE_BLE/source/cordio/TESTS/cordio_hci/transport/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/FEATURE_BLE/source/cordio/driver/CordioHCIDriver.cpp b/connectivity/FEATURE_BLE/source/cordio/driver/CordioHCIDriver.cpp index 340de1008b9..ee7691f5a68 100644 --- a/connectivity/FEATURE_BLE/source/cordio/driver/CordioHCIDriver.cpp +++ b/connectivity/FEATURE_BLE/source/cordio/driver/CordioHCIDriver.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/FEATURE_BLE/source/cordio/driver/CordioHCITransportDriver.cpp b/connectivity/FEATURE_BLE/source/cordio/driver/CordioHCITransportDriver.cpp index bb4834e3ef8..2dc437dedd9 100644 --- a/connectivity/FEATURE_BLE/source/cordio/driver/CordioHCITransportDriver.cpp +++ b/connectivity/FEATURE_BLE/source/cordio/driver/CordioHCITransportDriver.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/FEATURE_BLE/source/cordio/driver/H4TransportDriver.cpp b/connectivity/FEATURE_BLE/source/cordio/driver/H4TransportDriver.cpp index a988a49cb3b..9c625fc446f 100644 --- a/connectivity/FEATURE_BLE/source/cordio/driver/H4TransportDriver.cpp +++ b/connectivity/FEATURE_BLE/source/cordio/driver/H4TransportDriver.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/FEATURE_BLE/source/gap/AdvertisingDataBuilder.cpp b/connectivity/FEATURE_BLE/source/gap/AdvertisingDataBuilder.cpp index 459e47b5f1c..f810979938b 100644 --- a/connectivity/FEATURE_BLE/source/gap/AdvertisingDataBuilder.cpp +++ b/connectivity/FEATURE_BLE/source/gap/AdvertisingDataBuilder.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/FEATURE_BLE/source/gap/AdvertisingParameters.cpp b/connectivity/FEATURE_BLE/source/gap/AdvertisingParameters.cpp index e2295797385..0fcde1ebbc4 100644 --- a/connectivity/FEATURE_BLE/source/gap/AdvertisingParameters.cpp +++ b/connectivity/FEATURE_BLE/source/gap/AdvertisingParameters.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/FEATURE_BLE/source/gap/ConnectionParameters.cpp b/connectivity/FEATURE_BLE/source/gap/ConnectionParameters.cpp index 8a010ac8e9d..95c8589cee9 100644 --- a/connectivity/FEATURE_BLE/source/gap/ConnectionParameters.cpp +++ b/connectivity/FEATURE_BLE/source/gap/ConnectionParameters.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/cellular/include/cellular/framework/common/APN_db.h b/connectivity/cellular/include/cellular/framework/common/APN_db.h index 42c3f3b35c8..6bd2432932a 100644 --- a/connectivity/cellular/include/cellular/framework/common/APN_db.h +++ b/connectivity/cellular/include/cellular/framework/common/APN_db.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ublox, ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/cellular/source/framework/common/APN_db.cpp b/connectivity/cellular/source/framework/common/APN_db.cpp index ebd6cb13224..6250ed13c25 100644 --- a/connectivity/cellular/source/framework/common/APN_db.cpp +++ b/connectivity/cellular/source/framework/common/APN_db.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ublox, ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCIDriver.cpp b/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCIDriver.cpp index 36237322400..2b64190341c 100644 --- a/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCIDriver.cpp +++ b/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCIDriver.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCIDriver.h b/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCIDriver.h index bd490cbdfe0..a9d97efdf27 100644 --- a/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCIDriver.h +++ b/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCIDriver.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCITransportDriver.cpp b/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCITransportDriver.cpp index 7f116e95607..c63e9d1c49b 100644 --- a/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCITransportDriver.cpp +++ b/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCITransportDriver.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCITransportDriver.h b/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCITransportDriver.h index d0a3be13047..47cc872355d 100644 --- a/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCITransportDriver.h +++ b/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCITransportDriver.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_ARM_FM/COMPONENT_LAN91C111/fvp_emac.cpp b/connectivity/drivers/emac/TARGET_ARM_FM/COMPONENT_LAN91C111/fvp_emac.cpp index c5a63782444..015df8dbc44 100644 --- a/connectivity/drivers/emac/TARGET_ARM_FM/COMPONENT_LAN91C111/fvp_emac.cpp +++ b/connectivity/drivers/emac/TARGET_ARM_FM/COMPONENT_LAN91C111/fvp_emac.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_ARM_FM/COMPONENT_LAN91C111/fvp_emac.h b/connectivity/drivers/emac/TARGET_ARM_FM/COMPONENT_LAN91C111/fvp_emac.h index 7f7400755c6..3806767f235 100644 --- a/connectivity/drivers/emac/TARGET_ARM_FM/COMPONENT_LAN91C111/fvp_emac.h +++ b/connectivity/drivers/emac/TARGET_ARM_FM/COMPONENT_LAN91C111/fvp_emac.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac.cpp b/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac.cpp index 126fb4f9049..80b74bd8620 100644 --- a/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac.cpp +++ b/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac.cpp @@ -1,5 +1,6 @@ /* * Copyright (c) 2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac.h b/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac.h index 58762d4f59f..c4dbf712bb6 100644 --- a/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac.h +++ b/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac_config.h b/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac_config.h index 93d73f47db4..a96a008357a 100644 --- a/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac_config.h +++ b/connectivity/drivers/emac/TARGET_ARM_SSG/COMPONENT_SMSC9220/smsc9220_emac_config.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_M480/m480_eth.c b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_M480/m480_eth.c index dc8dfeaaeba..6543beac6fa 100644 --- a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_M480/m480_eth.c +++ b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_M480/m480_eth.c @@ -1,6 +1,7 @@ /* * Copyright (c) 2018 Nuvoton Technology Corp. * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_M480/m480_eth.h b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_M480/m480_eth.h index 9a1be26de9a..2866516567b 100644 --- a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_M480/m480_eth.h +++ b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_M480/m480_eth.h @@ -1,6 +1,7 @@ /* * Copyright (c) 2018 Nuvoton Technology Corp. * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_NUC472/nuc472_eth.c b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_NUC472/nuc472_eth.c index e0f77b704e8..209fb024724 100644 --- a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_NUC472/nuc472_eth.c +++ b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_NUC472/nuc472_eth.c @@ -1,6 +1,7 @@ /* * Copyright (c) 2018 Nuvoton Technology Corp. * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_NUC472/nuc472_eth.h b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_NUC472/nuc472_eth.h index 1766b03cf89..5dde376c969 100644 --- a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_NUC472/nuc472_eth.h +++ b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/TARGET_NUC472/nuc472_eth.h @@ -1,6 +1,7 @@ /* * Copyright (c) 2018 Nuvoton Technology Corp. * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_emac.cpp b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_emac.cpp index 48a1dfe6812..32c63215f6d 100644 --- a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_emac.cpp +++ b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_emac.cpp @@ -1,6 +1,7 @@ /* * Copyright (c) 2018 Nuvoton Technology Corp. * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_emac_config.h b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_emac_config.h index 7bb83c3646f..1980ee7d33a 100644 --- a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_emac_config.h +++ b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_emac_config.h @@ -1,4 +1,5 @@ /* Copyright (c) 2018 ARM Limited +/* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_eth_hal.h b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_eth_hal.h index e84ee604eb8..e83fe8c3a40 100644 --- a/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_eth_hal.h +++ b/connectivity/drivers/emac/TARGET_NUVOTON_EMAC/numaker_eth_hal.h @@ -1,6 +1,7 @@ /* * Copyright (c) 2018 Nuvoton Technology Corp. * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_LPCTarget/lpc17_emac.h b/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_LPCTarget/lpc17_emac.h index 87ca0628e63..d558ad9fa1c 100644 --- a/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_LPCTarget/lpc17_emac.h +++ b/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_LPCTarget/lpc17_emac.h @@ -1,4 +1,5 @@ /* Copyright (c) 2018 ARM Limited +/* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/hardware_init_LPC546XX.c b/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/hardware_init_LPC546XX.c index 096689e5e51..8094611ffcc 100644 --- a/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/hardware_init_LPC546XX.c +++ b/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/hardware_init_LPC546XX.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/hardware_init_LPC546XX.c b/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/hardware_init_LPC546XX.c index 22836f980a2..c68cfb3945a 100644 --- a/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/hardware_init_LPC546XX.c +++ b/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/hardware_init_LPC546XX.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/lpc546xx_emac.cpp b/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/lpc546xx_emac.cpp index b8c1414d587..cc5f09385f2 100644 --- a/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/lpc546xx_emac.cpp +++ b/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/lpc546xx_emac.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/lpc546xx_emac_config.h b/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/lpc546xx_emac_config.h index 72df09fae05..f2a79951b7d 100644 --- a/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/lpc546xx_emac_config.h +++ b/connectivity/drivers/emac/TARGET_NXP_EMAC/TARGET_MCU_LPC546XX/lpc546xx_emac_config.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_RENESAS_EMAC/TARGET_RZ_A1XX/rza1_emac.h b/connectivity/drivers/emac/TARGET_RENESAS_EMAC/TARGET_RZ_A1XX/rza1_emac.h index 70f55078309..f2c0ec787ff 100644 --- a/connectivity/drivers/emac/TARGET_RENESAS_EMAC/TARGET_RZ_A1XX/rza1_emac.h +++ b/connectivity/drivers/emac/TARGET_RENESAS_EMAC/TARGET_RZ_A1XX/rza1_emac.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F2/stm32f2_eth_conf.c b/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F2/stm32f2_eth_conf.c index dd004db579f..5a6d24d99f1 100644 --- a/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F2/stm32f2_eth_conf.c +++ b/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F2/stm32f2_eth_conf.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_ARCH_MAX/stm32f4_eth_conf.c b/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_ARCH_MAX/stm32f4_eth_conf.c index a11be4a4f72..ea557ca620c 100644 --- a/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_ARCH_MAX/stm32f4_eth_conf.c +++ b/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_ARCH_MAX/stm32f4_eth_conf.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_NUCLEO_F429ZI/stm32f4_eth_conf.c b/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_NUCLEO_F429ZI/stm32f4_eth_conf.c index a11be4a4f72..ea557ca620c 100644 --- a/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_NUCLEO_F429ZI/stm32f4_eth_conf.c +++ b/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_NUCLEO_F429ZI/stm32f4_eth_conf.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_NUCLEO_F439ZI/stm32f4_eth_conf.c b/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_NUCLEO_F439ZI/stm32f4_eth_conf.c index a11be4a4f72..ea557ca620c 100644 --- a/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_NUCLEO_F439ZI/stm32f4_eth_conf.c +++ b/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F4/TARGET_NUCLEO_F439ZI/stm32f4_eth_conf.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F7/stm32f7_eth_conf.c b/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F7/stm32f7_eth_conf.c index 76dbeb4fbdf..98655d74b83 100644 --- a/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F7/stm32f7_eth_conf.c +++ b/connectivity/drivers/emac/TARGET_STM/TARGET_STM32F7/stm32f7_eth_conf.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/mbedtls/TARGET_STM/cryp_stm32.h b/connectivity/drivers/mbedtls/TARGET_STM/cryp_stm32.h index 028c616330b..b69e7277061 100644 --- a/connectivity/drivers/mbedtls/TARGET_STM/cryp_stm32.h +++ b/connectivity/drivers/mbedtls/TARGET_STM/cryp_stm32.h @@ -5,6 +5,7 @@ * @attention * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved + * SPDX-License-Identifier: Apache-2.0 * Copyright (C) 2019-2020 STMicroelectronics, All Rights Reserved * * This software component is licensed by ST under Apache 2.0 license, diff --git a/connectivity/drivers/mbedtls/TARGET_STM/hash_stm32.h b/connectivity/drivers/mbedtls/TARGET_STM/hash_stm32.h index b91c75615ba..e76b36a2035 100644 --- a/connectivity/drivers/mbedtls/TARGET_STM/hash_stm32.h +++ b/connectivity/drivers/mbedtls/TARGET_STM/hash_stm32.h @@ -5,6 +5,7 @@ * @attention * * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved + * SPDX-License-Identifier: Apache-2.0 * Copyright (C) 2019 STMicroelectronics, All Rights Reserved * * This software component is licensed by ST under Apache 2.0 license, diff --git a/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512Driver.h b/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512Driver.h index cd84dbccdda..4ac31e80ee3 100644 --- a/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512Driver.h +++ b/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512Driver.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512SPITransportDriver.h b/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512SPITransportDriver.h index 99a7ab9599f..59be70db724 100644 --- a/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512SPITransportDriver.h +++ b/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512SPITransportDriver.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512TransportDriver.h b/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512TransportDriver.h index cb5c43736a2..0bea1a522e7 100644 --- a/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512TransportDriver.h +++ b/connectivity/drivers/nfc/PN512/include/nfc/controllers/PN512TransportDriver.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/nfc/PN512/source/PN512Driver.cpp b/connectivity/drivers/nfc/PN512/source/PN512Driver.cpp index 315c53eb0a0..ae2084c206e 100644 --- a/connectivity/drivers/nfc/PN512/source/PN512Driver.cpp +++ b/connectivity/drivers/nfc/PN512/source/PN512Driver.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/nfc/PN512/source/PN512SPITransportDriver.cpp b/connectivity/drivers/nfc/PN512/source/PN512SPITransportDriver.cpp index 1fb9f99e62b..f9cac512a6c 100644 --- a/connectivity/drivers/nfc/PN512/source/PN512SPITransportDriver.cpp +++ b/connectivity/drivers/nfc/PN512/source/PN512SPITransportDriver.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/drivers/nfc/PN512/source/PN512TransportDriver.cpp b/connectivity/drivers/nfc/PN512/source/PN512TransportDriver.cpp index f065349b2c5..41c9fdb4535 100644 --- a/connectivity/drivers/nfc/PN512/source/PN512TransportDriver.cpp +++ b/connectivity/drivers/nfc/PN512/source/PN512TransportDriver.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/lwipstack/include/lwipstack/LWIPMemoryManager.h b/connectivity/lwipstack/include/lwipstack/LWIPMemoryManager.h index 769e6c1b73a..926b1c6cf95 100644 --- a/connectivity/lwipstack/include/lwipstack/LWIPMemoryManager.h +++ b/connectivity/lwipstack/include/lwipstack/LWIPMemoryManager.h @@ -1,4 +1,5 @@ /* Copyright (c) 2017 ARM Limited +/* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/lwipstack/include/lwipstack/LWIPStack.h b/connectivity/lwipstack/include/lwipstack/LWIPStack.h index 9e05c9a0cd1..994a4a0af3b 100644 --- a/connectivity/lwipstack/include/lwipstack/LWIPStack.h +++ b/connectivity/lwipstack/include/lwipstack/LWIPStack.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/lwipstack/include/lwipstack/lwip_tools.h b/connectivity/lwipstack/include/lwipstack/lwip_tools.h index 07fcdfae9e8..fa41dc9b7e6 100644 --- a/connectivity/lwipstack/include/lwipstack/lwip_tools.h +++ b/connectivity/lwipstack/include/lwipstack/lwip_tools.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/lwipstack/lwip-sys/lwip_random.c b/connectivity/lwipstack/lwip-sys/lwip_random.c index c851dbdaa4a..ddcf314a219 100644 --- a/connectivity/lwipstack/lwip-sys/lwip_random.c +++ b/connectivity/lwipstack/lwip-sys/lwip_random.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/lwipstack/lwip-sys/lwip_random.h b/connectivity/lwipstack/lwip-sys/lwip_random.h index 035e479e24e..08bbb7d0863 100644 --- a/connectivity/lwipstack/lwip-sys/lwip_random.h +++ b/connectivity/lwipstack/lwip-sys/lwip_random.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/lwipstack/source/LWIPInterface.cpp b/connectivity/lwipstack/source/LWIPInterface.cpp index b6e28a99b87..a118ccb3992 100644 --- a/connectivity/lwipstack/source/LWIPInterface.cpp +++ b/connectivity/lwipstack/source/LWIPInterface.cpp @@ -1,4 +1,5 @@ /* Copyright (c) 2017 ARM Limited +/* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/lwipstack/source/LWIPInterfaceEMAC.cpp b/connectivity/lwipstack/source/LWIPInterfaceEMAC.cpp index 6b426c223f2..56fbcc0d904 100644 --- a/connectivity/lwipstack/source/LWIPInterfaceEMAC.cpp +++ b/connectivity/lwipstack/source/LWIPInterfaceEMAC.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/lwipstack/source/LWIPMemoryManager.cpp b/connectivity/lwipstack/source/LWIPMemoryManager.cpp index 678cc23f583..85af09da385 100644 --- a/connectivity/lwipstack/source/LWIPMemoryManager.cpp +++ b/connectivity/lwipstack/source/LWIPMemoryManager.cpp @@ -1,4 +1,5 @@ /* Copyright (c) 2017 ARM Limited +/* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/lwipstack/source/LWIPStack.cpp b/connectivity/lwipstack/source/LWIPStack.cpp index c3e6e79775f..95bd2ec1cb2 100644 --- a/connectivity/lwipstack/source/LWIPStack.cpp +++ b/connectivity/lwipstack/source/LWIPStack.cpp @@ -1,5 +1,6 @@ /* LWIP implementation of NSAPI NetworkStack * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/lwipstack/source/lwip_tools.cpp b/connectivity/lwipstack/source/lwip_tools.cpp index 0a541808e2e..7253b3eeede 100644 --- a/connectivity/lwipstack/source/lwip_tools.cpp +++ b/connectivity/lwipstack/source/lwip_tools.cpp @@ -1,5 +1,6 @@ /* LWIP common helpers * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/mbedtls/platform/src/mbed_trng.cpp b/connectivity/mbedtls/platform/src/mbed_trng.cpp index eb7a516614d..c0129f629b7 100644 --- a/connectivity/mbedtls/platform/src/mbed_trng.cpp +++ b/connectivity/mbedtls/platform/src/mbed_trng.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nanostack/mbed-mesh-api/source/NanostackMemoryManager.cpp b/connectivity/nanostack/mbed-mesh-api/source/NanostackMemoryManager.cpp index fc88ee019d4..d87c6c18f62 100644 --- a/connectivity/nanostack/mbed-mesh-api/source/NanostackMemoryManager.cpp +++ b/connectivity/nanostack/mbed-mesh-api/source/NanostackMemoryManager.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nanostack/mbed-mesh-api/source/include/NanostackMemoryManager.h b/connectivity/nanostack/mbed-mesh-api/source/include/NanostackMemoryManager.h index cf8fa2c8216..efc68a466f5 100644 --- a/connectivity/nanostack/mbed-mesh-api/source/include/NanostackMemoryManager.h +++ b/connectivity/nanostack/mbed-mesh-api/source/include/NanostackMemoryManager.h @@ -1,4 +1,5 @@ /* Copyright (c) 2017 ARM Limited +/* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nanostack/mbed-mesh-api/source/include/wisun_tasklet.h b/connectivity/nanostack/mbed-mesh-api/source/include/wisun_tasklet.h index 5156293633c..d7429deb52d 100644 --- a/connectivity/nanostack/mbed-mesh-api/source/include/wisun_tasklet.h +++ b/connectivity/nanostack/mbed-mesh-api/source/include/wisun_tasklet.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/fnet_config.h b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/fnet_config.h index 85f2340c263..54bb282c4e7 100644 --- a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/fnet_config.h +++ b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/fnet_config.h @@ -1,6 +1,7 @@ /************************************************************************** * * Copyright (c) 2017, Arm Limited and affiliates. +* SPDX-License-Identifier: Apache-2.0 * Copyright 2011-2016 by Andrey Butok. FNET Community. * Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc. * diff --git a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/compiler/fnet_comp.h b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/compiler/fnet_comp.h index 04881c1f84b..d3109581b5f 100644 --- a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/compiler/fnet_comp.h +++ b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/compiler/fnet_comp.h @@ -1,6 +1,7 @@ /************************************************************************** * * Copyright (c) 2019 Arm Limited and affiliates. +* SPDX-License-Identifier: Apache-2.0 * Copyright 2011-2016 by Andrey Butok. FNET Community. * Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc. * diff --git a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/compiler/fnet_comp_config.h b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/compiler/fnet_comp_config.h index 81732fbf62b..ab376cec256 100644 --- a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/compiler/fnet_comp_config.h +++ b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/compiler/fnet_comp_config.h @@ -1,6 +1,7 @@ /************************************************************************** * * Copyright (c) 2019 Arm Limited and affiliates. +* SPDX-License-Identifier: Apache-2.0 * Copyright 2011-2016 by Andrey Butok. FNET Community. * Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc. * diff --git a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/fnet_services.h b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/fnet_services.h index 197d0b4cc0c..255b8ea950b 100644 --- a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/fnet_services.h +++ b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/fnet_services.h @@ -1,6 +1,7 @@ /************************************************************************** * * Copyright (c) 2017, Arm Limited and affiliates. +* SPDX-License-Identifier: Apache-2.0 * Copyright 2011-2016 by Andrey Butok. FNET Community. * Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc. * diff --git a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/fnet_services_config.h b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/fnet_services_config.h index bb33a14c411..c93f83a0ca7 100644 --- a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/fnet_services_config.h +++ b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/fnet_services_config.h @@ -1,6 +1,7 @@ /************************************************************************** * * Copyright (c) 2017, Arm Limited and affiliates. +* SPDX-License-Identifier: Apache-2.0 * Copyright 2011-2016 by Andrey Butok. FNET Community. * Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc. * diff --git a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.c b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.c index 4ae61bef831..94561a3a5b9 100644 --- a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.c +++ b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.c @@ -1,6 +1,7 @@ /************************************************************************** * * Copyright (c) 2017, 2019 Arm Limited and affiliates. +* SPDX-License-Identifier: Apache-2.0 * Copyright 2016 by Andrey Butok. FNET Community. * *************************************************************************** diff --git a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.h b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.h index 38511a37a79..ff3e2f71197 100644 --- a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.h +++ b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.h @@ -1,6 +1,7 @@ /************************************************************************** * * Copyright (c) 2017, Arm Limited and affiliates. +* SPDX-License-Identifier: Apache-2.0 * Copyright 2016 by Andrey Butok. FNET Community. * *************************************************************************** diff --git a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/poll/fnet_poll.c b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/poll/fnet_poll.c index 28234e0ba4d..8dbd864af9b 100644 --- a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/poll/fnet_poll.c +++ b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/poll/fnet_poll.c @@ -1,5 +1,6 @@ /************************************************************************** * Copyright (c) 2017, Arm Limited and affiliates. +* SPDX-License-Identifier: Apache-2.0 * Copyright 2011-2016 by Andrey Butok. FNET Community. * Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc. * diff --git a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/serial/fnet_serial.h b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/serial/fnet_serial.h index 38afbb0baa8..3bfde795206 100644 --- a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/serial/fnet_serial.h +++ b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/serial/fnet_serial.h @@ -1,6 +1,7 @@ /************************************************************************** * * Copyright (c) 2017, Arm Limited and affiliates. +* SPDX-License-Identifier: Apache-2.0 * Copyright 2011-2016 by Andrey Butok. FNET Community. * Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc. * diff --git a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_debug.h b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_debug.h index 5d19ddeeda9..b918c9b10b8 100644 --- a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_debug.h +++ b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_debug.h @@ -1,6 +1,7 @@ /************************************************************************** * * Copyright (c) 2017, Arm Limited and affiliates. +* SPDX-License-Identifier: Apache-2.0 * Copyright 2011-2016 by Andrey Butok. FNET Community. * Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc. * diff --git a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_stdlib.c b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_stdlib.c index 8fbdb2f77b8..61c2580ce4b 100644 --- a/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_stdlib.c +++ b/connectivity/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_stdlib.c @@ -1,6 +1,7 @@ /************************************************************************** * * Copyright (c) 2017, Arm Limited and affiliates. +* SPDX-License-Identifier: Apache-2.0 * Copyright 2011-2016 by Andrey Butok. FNET Community. * Copyright 2008-2010 by Freescale Semiconductor, Inc. * Copyright 2003 by Motorola SPS. diff --git a/connectivity/netsocket/include/netsocket/CellularNonIPSocket.h b/connectivity/netsocket/include/netsocket/CellularNonIPSocket.h index d12224667e2..47721162c04 100644 --- a/connectivity/netsocket/include/netsocket/CellularNonIPSocket.h +++ b/connectivity/netsocket/include/netsocket/CellularNonIPSocket.h @@ -1,5 +1,6 @@ /* CellularNonIPSocket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/DNS.h b/connectivity/netsocket/include/netsocket/DNS.h index 10d595e1a93..fa17712b571 100644 --- a/connectivity/netsocket/include/netsocket/DNS.h +++ b/connectivity/netsocket/include/netsocket/DNS.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/EMAC.h b/connectivity/netsocket/include/netsocket/EMAC.h index d59c267e1fd..515629b5a61 100644 --- a/connectivity/netsocket/include/netsocket/EMAC.h +++ b/connectivity/netsocket/include/netsocket/EMAC.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/EMACInterface.h b/connectivity/netsocket/include/netsocket/EMACInterface.h index 0cc84dd220d..8979b0942ec 100644 --- a/connectivity/netsocket/include/netsocket/EMACInterface.h +++ b/connectivity/netsocket/include/netsocket/EMACInterface.h @@ -1,5 +1,6 @@ /* LWIP implementation of NetworkInterfaceAPI * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/EMACMemoryManager.h b/connectivity/netsocket/include/netsocket/EMACMemoryManager.h index e69f24bea68..f27a65aaef0 100644 --- a/connectivity/netsocket/include/netsocket/EMACMemoryManager.h +++ b/connectivity/netsocket/include/netsocket/EMACMemoryManager.h @@ -1,4 +1,5 @@ /* Copyright (c) 2017 ARM Limited +/* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/EthInterface.h b/connectivity/netsocket/include/netsocket/EthInterface.h index 6494b99323c..f8b95340074 100644 --- a/connectivity/netsocket/include/netsocket/EthInterface.h +++ b/connectivity/netsocket/include/netsocket/EthInterface.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/EthernetInterface.h b/connectivity/netsocket/include/netsocket/EthernetInterface.h index 08b158dd499..b0583187a8b 100644 --- a/connectivity/netsocket/include/netsocket/EthernetInterface.h +++ b/connectivity/netsocket/include/netsocket/EthernetInterface.h @@ -1,5 +1,6 @@ /* LWIP implementation of NetworkInterfaceAPI * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/ICMPSocket.h b/connectivity/netsocket/include/netsocket/ICMPSocket.h index 31de0a308fe..1837bc8e096 100644 --- a/connectivity/netsocket/include/netsocket/ICMPSocket.h +++ b/connectivity/netsocket/include/netsocket/ICMPSocket.h @@ -2,6 +2,7 @@ /** @{*/ /* ICMPSocket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/InternetDatagramSocket.h b/connectivity/netsocket/include/netsocket/InternetDatagramSocket.h index 16adcea5740..42af0757e09 100644 --- a/connectivity/netsocket/include/netsocket/InternetDatagramSocket.h +++ b/connectivity/netsocket/include/netsocket/InternetDatagramSocket.h @@ -2,6 +2,7 @@ /** @{*/ /* InternetDatagramSocket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/InternetSocket.h b/connectivity/netsocket/include/netsocket/InternetSocket.h index d1dc7e179e6..200b61a0cc9 100644 --- a/connectivity/netsocket/include/netsocket/InternetSocket.h +++ b/connectivity/netsocket/include/netsocket/InternetSocket.h @@ -3,6 +3,7 @@ /** @{*/ /* Socket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/MeshInterface.h b/connectivity/netsocket/include/netsocket/MeshInterface.h index 99a5d3ef5e7..4790a4209bc 100644 --- a/connectivity/netsocket/include/netsocket/MeshInterface.h +++ b/connectivity/netsocket/include/netsocket/MeshInterface.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/NetworkInterface.h b/connectivity/netsocket/include/netsocket/NetworkInterface.h index 8cfcd9c328c..ef7748ff933 100644 --- a/connectivity/netsocket/include/netsocket/NetworkInterface.h +++ b/connectivity/netsocket/include/netsocket/NetworkInterface.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/NetworkStack.h b/connectivity/netsocket/include/netsocket/NetworkStack.h index 3fe0ba1cc60..2f6bb78cbc4 100644 --- a/connectivity/netsocket/include/netsocket/NetworkStack.h +++ b/connectivity/netsocket/include/netsocket/NetworkStack.h @@ -1,6 +1,7 @@ /* NetworkStack * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/OnboardNetworkStack.h b/connectivity/netsocket/include/netsocket/OnboardNetworkStack.h index 5f2740882af..0a4e67c6ea6 100644 --- a/connectivity/netsocket/include/netsocket/OnboardNetworkStack.h +++ b/connectivity/netsocket/include/netsocket/OnboardNetworkStack.h @@ -1,5 +1,6 @@ /* mbed OS IP stack API * Copyright (c) 2015-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/Socket.h b/connectivity/netsocket/include/netsocket/Socket.h index ec9f2bb9fe5..de493c7bd6e 100644 --- a/connectivity/netsocket/include/netsocket/Socket.h +++ b/connectivity/netsocket/include/netsocket/Socket.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/SocketAddress.h b/connectivity/netsocket/include/netsocket/SocketAddress.h index 3d25dadacdf..a2f11f7c396 100644 --- a/connectivity/netsocket/include/netsocket/SocketAddress.h +++ b/connectivity/netsocket/include/netsocket/SocketAddress.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/SocketStats.h b/connectivity/netsocket/include/netsocket/SocketStats.h index 91f57dd0a6f..1f39b99caaa 100644 --- a/connectivity/netsocket/include/netsocket/SocketStats.h +++ b/connectivity/netsocket/include/netsocket/SocketStats.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/TCPSocket.h b/connectivity/netsocket/include/netsocket/TCPSocket.h index 4831f6d5359..37897f231a0 100644 --- a/connectivity/netsocket/include/netsocket/TCPSocket.h +++ b/connectivity/netsocket/include/netsocket/TCPSocket.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/UDPSocket.h b/connectivity/netsocket/include/netsocket/UDPSocket.h index 70d45994b5a..02b55ca0298 100644 --- a/connectivity/netsocket/include/netsocket/UDPSocket.h +++ b/connectivity/netsocket/include/netsocket/UDPSocket.h @@ -3,6 +3,7 @@ /** @{*/ /* UDPSocket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/WiFiAccessPoint.h b/connectivity/netsocket/include/netsocket/WiFiAccessPoint.h index ca5cbaa9fe9..a94316a9cf9 100644 --- a/connectivity/netsocket/include/netsocket/WiFiAccessPoint.h +++ b/connectivity/netsocket/include/netsocket/WiFiAccessPoint.h @@ -1,5 +1,6 @@ /* WiFiInterface * Copyright (c) 2015 - 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/WiFiInterface.h b/connectivity/netsocket/include/netsocket/WiFiInterface.h index 790a0764fc3..4fd7fc6fb8a 100644 --- a/connectivity/netsocket/include/netsocket/WiFiInterface.h +++ b/connectivity/netsocket/include/netsocket/WiFiInterface.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2015 - 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/nsapi.h b/connectivity/netsocket/include/netsocket/nsapi.h index c4a59208197..346c9ed0352 100644 --- a/connectivity/netsocket/include/netsocket/nsapi.h +++ b/connectivity/netsocket/include/netsocket/nsapi.h @@ -3,6 +3,7 @@ /** @{*/ /* nsapi.h - The network socket API * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/nsapi_dns.h b/connectivity/netsocket/include/netsocket/nsapi_dns.h index 5e4f0037083..ef8811eb4e3 100644 --- a/connectivity/netsocket/include/netsocket/nsapi_dns.h +++ b/connectivity/netsocket/include/netsocket/nsapi_dns.h @@ -1,6 +1,7 @@ /* * Original work Copyright (c) 2013 Henry Leinen (henry[dot]leinen [at] online [dot] de) * Modified work Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/nsapi_ppp.h b/connectivity/netsocket/include/netsocket/nsapi_ppp.h index b23a03ac861..6c6eed6c282 100644 --- a/connectivity/netsocket/include/netsocket/nsapi_ppp.h +++ b/connectivity/netsocket/include/netsocket/nsapi_ppp.h @@ -2,6 +2,7 @@ /** @{*/ /* nsapi_ppp.h * Modified work Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/include/netsocket/nsapi_types.h b/connectivity/netsocket/include/netsocket/nsapi_types.h index 4c5bb40a1c3..5c88800c589 100644 --- a/connectivity/netsocket/include/netsocket/nsapi_types.h +++ b/connectivity/netsocket/include/netsocket/nsapi_types.h @@ -3,6 +3,7 @@ /** @{*/ /* nsapi.h - The network socket API * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/CellularNonIPSocket.cpp b/connectivity/netsocket/source/CellularNonIPSocket.cpp index dff7a644330..8ff6f3e7006 100644 --- a/connectivity/netsocket/source/CellularNonIPSocket.cpp +++ b/connectivity/netsocket/source/CellularNonIPSocket.cpp @@ -1,6 +1,7 @@ /* CellularNonIPSocket #include * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/EMACInterface.cpp b/connectivity/netsocket/source/EMACInterface.cpp index 215ba863353..fba8fa5888e 100644 --- a/connectivity/netsocket/source/EMACInterface.cpp +++ b/connectivity/netsocket/source/EMACInterface.cpp @@ -1,5 +1,6 @@ /* LWIP implementation of NetworkInterfaceAPI * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/EthernetInterface.cpp b/connectivity/netsocket/source/EthernetInterface.cpp index 92bea2b4132..9852e277a62 100644 --- a/connectivity/netsocket/source/EthernetInterface.cpp +++ b/connectivity/netsocket/source/EthernetInterface.cpp @@ -1,5 +1,6 @@ /* LWIP implementation of NetworkInterfaceAPI * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/ICMPSocket.cpp b/connectivity/netsocket/source/ICMPSocket.cpp index c7903b05dc0..f6c9b98de10 100644 --- a/connectivity/netsocket/source/ICMPSocket.cpp +++ b/connectivity/netsocket/source/ICMPSocket.cpp @@ -1,5 +1,6 @@ /* Socket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/InternetDatagramSocket.cpp b/connectivity/netsocket/source/InternetDatagramSocket.cpp index ae92240e0aa..4c0010de033 100644 --- a/connectivity/netsocket/source/InternetDatagramSocket.cpp +++ b/connectivity/netsocket/source/InternetDatagramSocket.cpp @@ -1,5 +1,6 @@ /* Socket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/InternetSocket.cpp b/connectivity/netsocket/source/InternetSocket.cpp index b326dd68e3b..9efe062df2b 100644 --- a/connectivity/netsocket/source/InternetSocket.cpp +++ b/connectivity/netsocket/source/InternetSocket.cpp @@ -1,5 +1,6 @@ /* InternetSocket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/NetworkInterface.cpp b/connectivity/netsocket/source/NetworkInterface.cpp index 31ad6c6ef3a..6e0ecd8a570 100644 --- a/connectivity/netsocket/source/NetworkInterface.cpp +++ b/connectivity/netsocket/source/NetworkInterface.cpp @@ -1,5 +1,6 @@ /* Socket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/NetworkInterfaceDefaults.cpp b/connectivity/netsocket/source/NetworkInterfaceDefaults.cpp index fc55770a266..fa501b88859 100644 --- a/connectivity/netsocket/source/NetworkInterfaceDefaults.cpp +++ b/connectivity/netsocket/source/NetworkInterfaceDefaults.cpp @@ -1,5 +1,6 @@ /* Network interface defaults * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/NetworkStack.cpp b/connectivity/netsocket/source/NetworkStack.cpp index be582a93fe2..24c028b0331 100644 --- a/connectivity/netsocket/source/NetworkStack.cpp +++ b/connectivity/netsocket/source/NetworkStack.cpp @@ -1,5 +1,6 @@ /* Socket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/SocketAddress.cpp b/connectivity/netsocket/source/SocketAddress.cpp index 9bef8fc8585..0b920b81f29 100644 --- a/connectivity/netsocket/source/SocketAddress.cpp +++ b/connectivity/netsocket/source/SocketAddress.cpp @@ -1,5 +1,6 @@ /* Socket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/SocketStats.cpp b/connectivity/netsocket/source/SocketStats.cpp index 083513892d4..80802ebd2db 100644 --- a/connectivity/netsocket/source/SocketStats.cpp +++ b/connectivity/netsocket/source/SocketStats.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/TCPSocket.cpp b/connectivity/netsocket/source/TCPSocket.cpp index c6dbe8e295f..4b72ab09b37 100644 --- a/connectivity/netsocket/source/TCPSocket.cpp +++ b/connectivity/netsocket/source/TCPSocket.cpp @@ -1,5 +1,6 @@ /* Socket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/UDPSocket.cpp b/connectivity/netsocket/source/UDPSocket.cpp index aec89259c75..ebe1edc03d8 100644 --- a/connectivity/netsocket/source/UDPSocket.cpp +++ b/connectivity/netsocket/source/UDPSocket.cpp @@ -1,5 +1,6 @@ /* Socket * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/nsapi_dns.cpp b/connectivity/netsocket/source/nsapi_dns.cpp index ccf711c28c0..4e250cd5afb 100644 --- a/connectivity/netsocket/source/nsapi_dns.cpp +++ b/connectivity/netsocket/source/nsapi_dns.cpp @@ -1,6 +1,7 @@ /* nsapi_dns.cpp * Original work Copyright (c) 2013 Henry Leinen (henry[dot]leinen [at] online [dot] de) * Modified work Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/netsocket/source/nsapi_ppp.cpp b/connectivity/netsocket/source/nsapi_ppp.cpp index d7ad910d32d..c7be2f1f881 100644 --- a/connectivity/netsocket/source/nsapi_ppp.cpp +++ b/connectivity/netsocket/source/nsapi_ppp.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/NFC.h b/connectivity/nfc/include/nfc/NFC.h index 38cfe23aa14..971eed99da3 100644 --- a/connectivity/nfc/include/nfc/NFC.h +++ b/connectivity/nfc/include/nfc/NFC.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/NFCController.h b/connectivity/nfc/include/nfc/NFCController.h index df55292f13f..cf09709fd02 100644 --- a/connectivity/nfc/include/nfc/NFCController.h +++ b/connectivity/nfc/include/nfc/NFCController.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/NFCControllerDriver.h b/connectivity/nfc/include/nfc/NFCControllerDriver.h index db78cfb8d1b..8df219fb511 100644 --- a/connectivity/nfc/include/nfc/NFCControllerDriver.h +++ b/connectivity/nfc/include/nfc/NFCControllerDriver.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/NFCDefinitions.h b/connectivity/nfc/include/nfc/NFCDefinitions.h index 0c1d3cedee3..0453f7ffbc7 100644 --- a/connectivity/nfc/include/nfc/NFCDefinitions.h +++ b/connectivity/nfc/include/nfc/NFCDefinitions.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/NFCEEPROM.h b/connectivity/nfc/include/nfc/NFCEEPROM.h index ed0deb301d4..4780a66341c 100644 --- a/connectivity/nfc/include/nfc/NFCEEPROM.h +++ b/connectivity/nfc/include/nfc/NFCEEPROM.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/NFCEEPROMDriver.h b/connectivity/nfc/include/nfc/NFCEEPROMDriver.h index f190e548eab..1451dfc0018 100644 --- a/connectivity/nfc/include/nfc/NFCEEPROMDriver.h +++ b/connectivity/nfc/include/nfc/NFCEEPROMDriver.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/NFCNDEFCapable.h b/connectivity/nfc/include/nfc/NFCNDEFCapable.h index 46f718d046a..001f1acce1b 100644 --- a/connectivity/nfc/include/nfc/NFCNDEFCapable.h +++ b/connectivity/nfc/include/nfc/NFCNDEFCapable.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/NFCRemoteEndpoint.h b/connectivity/nfc/include/nfc/NFCRemoteEndpoint.h index 7d2916c9d9a..d4611da4546 100644 --- a/connectivity/nfc/include/nfc/NFCRemoteEndpoint.h +++ b/connectivity/nfc/include/nfc/NFCRemoteEndpoint.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/NFCRemoteInitiator.h b/connectivity/nfc/include/nfc/NFCRemoteInitiator.h index b8cde883abf..da7d0640dfd 100644 --- a/connectivity/nfc/include/nfc/NFCRemoteInitiator.h +++ b/connectivity/nfc/include/nfc/NFCRemoteInitiator.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/NFCTarget.h b/connectivity/nfc/include/nfc/NFCTarget.h index b80d835fe54..d5af1046349 100644 --- a/connectivity/nfc/include/nfc/NFCTarget.h +++ b/connectivity/nfc/include/nfc/NFCTarget.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/Type4RemoteInitiator.h b/connectivity/nfc/include/nfc/Type4RemoteInitiator.h index af71c7f4edf..649948c308d 100644 --- a/connectivity/nfc/include/nfc/Type4RemoteInitiator.h +++ b/connectivity/nfc/include/nfc/Type4RemoteInitiator.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/ndef/MessageBuilder.h b/connectivity/nfc/include/nfc/ndef/MessageBuilder.h index 1b4e38e0d43..f3de22c9784 100644 --- a/connectivity/nfc/include/nfc/ndef/MessageBuilder.h +++ b/connectivity/nfc/include/nfc/ndef/MessageBuilder.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/ndef/MessageParser.h b/connectivity/nfc/include/nfc/ndef/MessageParser.h index a0ac9391ede..1754207a4b3 100644 --- a/connectivity/nfc/include/nfc/ndef/MessageParser.h +++ b/connectivity/nfc/include/nfc/ndef/MessageParser.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/ndef/Record.h b/connectivity/nfc/include/nfc/ndef/Record.h index 7c6fcd2ec98..6ef2de7757d 100644 --- a/connectivity/nfc/include/nfc/ndef/Record.h +++ b/connectivity/nfc/include/nfc/ndef/Record.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/ndef/RecordParser.h b/connectivity/nfc/include/nfc/ndef/RecordParser.h index 4c09078095f..5fdddf112f9 100644 --- a/connectivity/nfc/include/nfc/ndef/RecordParser.h +++ b/connectivity/nfc/include/nfc/ndef/RecordParser.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/ndef/common/Mime.h b/connectivity/nfc/include/nfc/ndef/common/Mime.h index ebf66e38bdb..1de44c6215b 100644 --- a/connectivity/nfc/include/nfc/ndef/common/Mime.h +++ b/connectivity/nfc/include/nfc/ndef/common/Mime.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/ndef/common/SimpleMessageParser.h b/connectivity/nfc/include/nfc/ndef/common/SimpleMessageParser.h index 2f7bbbc2742..afaa402c3fa 100644 --- a/connectivity/nfc/include/nfc/ndef/common/SimpleMessageParser.h +++ b/connectivity/nfc/include/nfc/ndef/common/SimpleMessageParser.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/ndef/common/Text.h b/connectivity/nfc/include/nfc/ndef/common/Text.h index e9d62d99f4a..821551fc514 100644 --- a/connectivity/nfc/include/nfc/ndef/common/Text.h +++ b/connectivity/nfc/include/nfc/ndef/common/Text.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/ndef/common/URI.h b/connectivity/nfc/include/nfc/ndef/common/URI.h index 683cdaa7642..6bb7b897432 100644 --- a/connectivity/nfc/include/nfc/ndef/common/URI.h +++ b/connectivity/nfc/include/nfc/ndef/common/URI.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/include/nfc/ndef/common/util.h b/connectivity/nfc/include/nfc/ndef/common/util.h index 1be55775049..b7d42e16eb6 100644 --- a/connectivity/nfc/include/nfc/ndef/common/util.h +++ b/connectivity/nfc/include/nfc/ndef/common/util.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/NFCController.cpp b/connectivity/nfc/source/NFCController.cpp index 8101558eced..b7a9ddf7c78 100644 --- a/connectivity/nfc/source/NFCController.cpp +++ b/connectivity/nfc/source/NFCController.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/NFCControllerDriver.cpp b/connectivity/nfc/source/NFCControllerDriver.cpp index bc9810a661d..8d19dbc049b 100644 --- a/connectivity/nfc/source/NFCControllerDriver.cpp +++ b/connectivity/nfc/source/NFCControllerDriver.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/NFCEEPROM.cpp b/connectivity/nfc/source/NFCEEPROM.cpp index e3dd75962aa..dfde8587a83 100644 --- a/connectivity/nfc/source/NFCEEPROM.cpp +++ b/connectivity/nfc/source/NFCEEPROM.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/NFCEEPROMDriver.cpp b/connectivity/nfc/source/NFCEEPROMDriver.cpp index 8305580bf22..67a01b31543 100644 --- a/connectivity/nfc/source/NFCEEPROMDriver.cpp +++ b/connectivity/nfc/source/NFCEEPROMDriver.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/NFCNDEFCapable.cpp b/connectivity/nfc/source/NFCNDEFCapable.cpp index 279820aa3b5..f8165167dd6 100644 --- a/connectivity/nfc/source/NFCNDEFCapable.cpp +++ b/connectivity/nfc/source/NFCNDEFCapable.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/NFCRemoteEndpoint.cpp b/connectivity/nfc/source/NFCRemoteEndpoint.cpp index f1c2a955079..442f1ffe7fa 100644 --- a/connectivity/nfc/source/NFCRemoteEndpoint.cpp +++ b/connectivity/nfc/source/NFCRemoteEndpoint.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/NFCRemoteInitiator.cpp b/connectivity/nfc/source/NFCRemoteInitiator.cpp index 4863ca8d115..9409428488d 100644 --- a/connectivity/nfc/source/NFCRemoteInitiator.cpp +++ b/connectivity/nfc/source/NFCRemoteInitiator.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/NFCTarget.cpp b/connectivity/nfc/source/NFCTarget.cpp index f54213d5ae6..c47a9e6c7fd 100644 --- a/connectivity/nfc/source/NFCTarget.cpp +++ b/connectivity/nfc/source/NFCTarget.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/Type4RemoteInitiator.cpp b/connectivity/nfc/source/Type4RemoteInitiator.cpp index aa03b290018..b15f83f5b84 100644 --- a/connectivity/nfc/source/Type4RemoteInitiator.cpp +++ b/connectivity/nfc/source/Type4RemoteInitiator.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/ndef/MessageBuilder.cpp b/connectivity/nfc/source/ndef/MessageBuilder.cpp index d9aec058a00..1d23fa23ad6 100644 --- a/connectivity/nfc/source/ndef/MessageBuilder.cpp +++ b/connectivity/nfc/source/ndef/MessageBuilder.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/ndef/MessageParser.cpp b/connectivity/nfc/source/ndef/MessageParser.cpp index 619d45dfc2d..89889ce8cb7 100644 --- a/connectivity/nfc/source/ndef/MessageParser.cpp +++ b/connectivity/nfc/source/ndef/MessageParser.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/ndef/RecordParser.cpp b/connectivity/nfc/source/ndef/RecordParser.cpp index a3ae07c34d5..4318fabc4e7 100644 --- a/connectivity/nfc/source/ndef/RecordParser.cpp +++ b/connectivity/nfc/source/ndef/RecordParser.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/ndef/common/Mime.cpp b/connectivity/nfc/source/ndef/common/Mime.cpp index 7818cd3e5c9..9a79010417f 100644 --- a/connectivity/nfc/source/ndef/common/Mime.cpp +++ b/connectivity/nfc/source/ndef/common/Mime.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/ndef/common/SimpleMessageParser.cpp b/connectivity/nfc/source/ndef/common/SimpleMessageParser.cpp index 5f0db5a0f15..bc29896e41a 100644 --- a/connectivity/nfc/source/ndef/common/SimpleMessageParser.cpp +++ b/connectivity/nfc/source/ndef/common/SimpleMessageParser.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/ndef/common/Text.cpp b/connectivity/nfc/source/ndef/common/Text.cpp index 6ea37be1435..8e8f7acf193 100644 --- a/connectivity/nfc/source/ndef/common/Text.cpp +++ b/connectivity/nfc/source/ndef/common/Text.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/ndef/common/URI.cpp b/connectivity/nfc/source/ndef/common/URI.cpp index 4761251ce17..5c1c928e69d 100644 --- a/connectivity/nfc/source/ndef/common/URI.cpp +++ b/connectivity/nfc/source/ndef/common/URI.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/connectivity/nfc/source/ndef/common/util.cpp b/connectivity/nfc/source/ndef/common/util.cpp index 27a2b4056c0..f42cfb79b77 100644 --- a/connectivity/nfc/source/ndef/common/util.cpp +++ b/connectivity/nfc/source/ndef/common/util.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/drivers/device_key/include/device_key/DeviceKey.h b/drivers/device_key/include/device_key/DeviceKey.h index 1f595d9f593..7c328e6c2a8 100644 --- a/drivers/device_key/include/device_key/DeviceKey.h +++ b/drivers/device_key/include/device_key/DeviceKey.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/drivers/device_key/source/DeviceKey.cpp b/drivers/device_key/source/DeviceKey.cpp index 6cf5784a3dc..bf60efd0674 100644 --- a/drivers/device_key/source/DeviceKey.cpp +++ b/drivers/device_key/source/DeviceKey.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/drivers/device_key/tests/TESTS/device_key/functionality/main.cpp b/drivers/device_key/tests/TESTS/device_key/functionality/main.cpp index 7d176482de1..e3ad66997e6 100644 --- a/drivers/device_key/tests/TESTS/device_key/functionality/main.cpp +++ b/drivers/device_key/tests/TESTS/device_key/functionality/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/events/include/events/equeue.h b/events/include/events/equeue.h index 5d452fc5040..e488de2af2d 100644 --- a/events/include/events/equeue.h +++ b/events/include/events/equeue.h @@ -3,6 +3,7 @@ * Flexible event queue for dispatching events * * Copyright (c) 2016-2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/events/include/events/internal/equeue_platform.h b/events/include/events/internal/equeue_platform.h index 5d47c148d4d..24e95a0d0d6 100644 --- a/events/include/events/internal/equeue_platform.h +++ b/events/include/events/internal/equeue_platform.h @@ -2,6 +2,7 @@ * System specific implementation * * Copyright (c) 2016-2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/events/include/events/mbed_shared_queues.h b/events/include/events/mbed_shared_queues.h index 9be5ff16e56..9a0a0e65caa 100644 --- a/events/include/events/mbed_shared_queues.h +++ b/events/include/events/mbed_shared_queues.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/events/source/equeue.c b/events/source/equeue.c index d45f9c25010..8126b23418b 100644 --- a/events/source/equeue.c +++ b/events/source/equeue.c @@ -2,6 +2,7 @@ * Flexible event queue for dispatching events * * Copyright (c) 2016-2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/events/source/equeue_mbed.cpp b/events/source/equeue_mbed.cpp index 9d9deaee2e9..c05362126e8 100644 --- a/events/source/equeue_mbed.cpp +++ b/events/source/equeue_mbed.cpp @@ -3,6 +3,7 @@ * https://github.com/mbedmicro/mbed * * Copyright (c) 2016-2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/events/source/equeue_posix.c b/events/source/equeue_posix.c index c1e67b165b4..fce1e18f014 100644 --- a/events/source/equeue_posix.c +++ b/events/source/equeue_posix.c @@ -2,6 +2,7 @@ * Implementation for Posix compliant platforms * * Copyright (c) 2016-2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/events/source/mbed_shared_queues.cpp b/events/source/mbed_shared_queues.cpp index 1fc6a079b9b..228fa76584e 100644 --- a/events/source/mbed_shared_queues.cpp +++ b/events/source/mbed_shared_queues.cpp @@ -1,5 +1,6 @@ /* events * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/events/tests/unit/prof.c b/events/tests/unit/prof.c index f7b8f903f75..3b06519e61a 100644 --- a/events/tests/unit/prof.c +++ b/events/tests/unit/prof.c @@ -2,6 +2,7 @@ * Profiling framework for the events library * * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/basic_test/main.cpp b/features/frameworks/utest/TESTS/unit_tests/basic_test/main.cpp index 0a647f6b248..cea9d0d4b98 100644 --- a/features/frameworks/utest/TESTS/unit_tests/basic_test/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/basic_test/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/basic_test_default/main.cpp b/features/frameworks/utest/TESTS/unit_tests/basic_test_default/main.cpp index 38c808d6e6d..5231a2bb998 100644 --- a/features/frameworks/utest/TESTS/unit_tests/basic_test_default/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/basic_test_default/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/case_async_validate/main.cpp b/features/frameworks/utest/TESTS/unit_tests/case_async_validate/main.cpp index 44e7f737f4e..daa8067bb65 100644 --- a/features/frameworks/utest/TESTS/unit_tests/case_async_validate/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/case_async_validate/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/case_control_async/main.cpp b/features/frameworks/utest/TESTS/unit_tests/case_control_async/main.cpp index e315e03f82a..ee2c5440ab7 100644 --- a/features/frameworks/utest/TESTS/unit_tests/case_control_async/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/case_control_async/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/case_control_repeat/main.cpp b/features/frameworks/utest/TESTS/unit_tests/case_control_repeat/main.cpp index 2aec32401ff..d4038b4ed15 100644 --- a/features/frameworks/utest/TESTS/unit_tests/case_control_repeat/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/case_control_repeat/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/case_selection/main.cpp b/features/frameworks/utest/TESTS/unit_tests/case_selection/main.cpp index c3d90516979..af940275ae6 100644 --- a/features/frameworks/utest/TESTS/unit_tests/case_selection/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/case_selection/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/case_setup_failure/main.cpp b/features/frameworks/utest/TESTS/unit_tests/case_setup_failure/main.cpp index f5e62b49d2c..070b9d1b789 100644 --- a/features/frameworks/utest/TESTS/unit_tests/case_setup_failure/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/case_setup_failure/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/case_teardown_failure/main.cpp b/features/frameworks/utest/TESTS/unit_tests/case_teardown_failure/main.cpp index 95a9601942f..24aea2ac07a 100644 --- a/features/frameworks/utest/TESTS/unit_tests/case_teardown_failure/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/case_teardown_failure/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/control_type/main.cpp b/features/frameworks/utest/TESTS/unit_tests/control_type/main.cpp index 04b07b217e8..def8a2de71b 100644 --- a/features/frameworks/utest/TESTS/unit_tests/control_type/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/control_type/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/minimal_async_scheduler/main.cpp b/features/frameworks/utest/TESTS/unit_tests/minimal_async_scheduler/main.cpp index 0e36ce18c4d..264b4ce5d97 100644 --- a/features/frameworks/utest/TESTS/unit_tests/minimal_async_scheduler/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/minimal_async_scheduler/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/minimal_scheduler/main.cpp b/features/frameworks/utest/TESTS/unit_tests/minimal_scheduler/main.cpp index 2f5299ff8a9..109c725696e 100644 --- a/features/frameworks/utest/TESTS/unit_tests/minimal_scheduler/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/minimal_scheduler/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/test_assertion_failure_test_setup/main.cpp b/features/frameworks/utest/TESTS/unit_tests/test_assertion_failure_test_setup/main.cpp index b432a09fa27..e0a75904d28 100644 --- a/features/frameworks/utest/TESTS/unit_tests/test_assertion_failure_test_setup/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/test_assertion_failure_test_setup/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/test_setup_case_selection_failure/main.cpp b/features/frameworks/utest/TESTS/unit_tests/test_setup_case_selection_failure/main.cpp index 9c928aae380..bbb82ad34cd 100644 --- a/features/frameworks/utest/TESTS/unit_tests/test_setup_case_selection_failure/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/test_setup_case_selection_failure/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/TESTS/unit_tests/test_setup_failure/main.cpp b/features/frameworks/utest/TESTS/unit_tests/test_setup_failure/main.cpp index e18c25cea40..91a5a6acfb1 100644 --- a/features/frameworks/utest/TESTS/unit_tests/test_setup_failure/main.cpp +++ b/features/frameworks/utest/TESTS/unit_tests/test_setup_failure/main.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/features/frameworks/utest/mbed-utest-shim.cpp b/features/frameworks/utest/mbed-utest-shim.cpp index 38a912e55d7..cd5aeb66b76 100644 --- a/features/frameworks/utest/mbed-utest-shim.cpp +++ b/features/frameworks/utest/mbed-utest-shim.cpp @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2013-2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/mbed.h b/mbed.h index 18bf0963168..8ed61789e58 100644 --- a/mbed.h +++ b/mbed.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/include/blockdevice/BlockDevice.h b/storage/blockdevice/include/blockdevice/BlockDevice.h index 9c482d0dba8..688728e1a44 100644 --- a/storage/blockdevice/include/blockdevice/BlockDevice.h +++ b/storage/blockdevice/include/blockdevice/BlockDevice.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/source/BufferedBlockDevice.cpp b/storage/blockdevice/source/BufferedBlockDevice.cpp index c6567355e18..8f2f4f7e02e 100644 --- a/storage/blockdevice/source/BufferedBlockDevice.cpp +++ b/storage/blockdevice/source/BufferedBlockDevice.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/source/ChainingBlockDevice.cpp b/storage/blockdevice/source/ChainingBlockDevice.cpp index 0e3ceb12153..a53c02b5a60 100644 --- a/storage/blockdevice/source/ChainingBlockDevice.cpp +++ b/storage/blockdevice/source/ChainingBlockDevice.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/source/ExhaustibleBlockDevice.cpp b/storage/blockdevice/source/ExhaustibleBlockDevice.cpp index b5a5213a07f..1b17dcba782 100644 --- a/storage/blockdevice/source/ExhaustibleBlockDevice.cpp +++ b/storage/blockdevice/source/ExhaustibleBlockDevice.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/source/FlashSimBlockDevice.cpp b/storage/blockdevice/source/FlashSimBlockDevice.cpp index f13f71a4238..6d6361510cc 100644 --- a/storage/blockdevice/source/FlashSimBlockDevice.cpp +++ b/storage/blockdevice/source/FlashSimBlockDevice.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/source/HeapBlockDevice.cpp b/storage/blockdevice/source/HeapBlockDevice.cpp index 0b8e9788084..65e5def5ded 100644 --- a/storage/blockdevice/source/HeapBlockDevice.cpp +++ b/storage/blockdevice/source/HeapBlockDevice.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/source/MBRBlockDevice.cpp b/storage/blockdevice/source/MBRBlockDevice.cpp index 3026f0779ad..3f0e2657f5a 100644 --- a/storage/blockdevice/source/MBRBlockDevice.cpp +++ b/storage/blockdevice/source/MBRBlockDevice.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/source/ProfilingBlockDevice.cpp b/storage/blockdevice/source/ProfilingBlockDevice.cpp index 794c6b78bce..f0fb090d3f9 100644 --- a/storage/blockdevice/source/ProfilingBlockDevice.cpp +++ b/storage/blockdevice/source/ProfilingBlockDevice.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/source/SlicingBlockDevice.cpp b/storage/blockdevice/source/SlicingBlockDevice.cpp index a57ba2f71c0..ad44d0bc982 100644 --- a/storage/blockdevice/source/SlicingBlockDevice.cpp +++ b/storage/blockdevice/source/SlicingBlockDevice.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/tests/TESTS/blockdevice/buffered_block_device/main.cpp b/storage/blockdevice/tests/TESTS/blockdevice/buffered_block_device/main.cpp index 38ac2db34bd..07f2fa1b12a 100644 --- a/storage/blockdevice/tests/TESTS/blockdevice/buffered_block_device/main.cpp +++ b/storage/blockdevice/tests/TESTS/blockdevice/buffered_block_device/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/tests/TESTS/blockdevice/flashsim_block_device/main.cpp b/storage/blockdevice/tests/TESTS/blockdevice/flashsim_block_device/main.cpp index 8da5794e433..636da23b33c 100644 --- a/storage/blockdevice/tests/TESTS/blockdevice/flashsim_block_device/main.cpp +++ b/storage/blockdevice/tests/TESTS/blockdevice/flashsim_block_device/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/tests/TESTS/blockdevice/heap_block_device/main.cpp b/storage/blockdevice/tests/TESTS/blockdevice/heap_block_device/main.cpp index 1f28f28c698..1c679c901fd 100644 --- a/storage/blockdevice/tests/TESTS/blockdevice/heap_block_device/main.cpp +++ b/storage/blockdevice/tests/TESTS/blockdevice/heap_block_device/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/tests/TESTS/blockdevice/mbr_block_device/main.cpp b/storage/blockdevice/tests/TESTS/blockdevice/mbr_block_device/main.cpp index 8bfcb8a849c..48859d18df0 100644 --- a/storage/blockdevice/tests/TESTS/blockdevice/mbr_block_device/main.cpp +++ b/storage/blockdevice/tests/TESTS/blockdevice/mbr_block_device/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/blockdevice/tests/TESTS/blockdevice/util_block_device/main.cpp b/storage/blockdevice/tests/TESTS/blockdevice/util_block_device/main.cpp index 1e336dd4eda..073a1dc8773 100644 --- a/storage/blockdevice/tests/TESTS/blockdevice/util_block_device/main.cpp +++ b/storage/blockdevice/tests/TESTS/blockdevice/util_block_device/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/fat/tests/TESTS/fat/fat_filesystem/main.cpp b/storage/filesystem/fat/tests/TESTS/fat/fat_filesystem/main.cpp index 1ad737c65ed..d1aadc1a9db 100644 --- a/storage/filesystem/fat/tests/TESTS/fat/fat_filesystem/main.cpp +++ b/storage/filesystem/fat/tests/TESTS/fat/fat_filesystem/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/fat/tests/TESTS/fat/multipart_fat_filesystem/main.cpp b/storage/filesystem/fat/tests/TESTS/fat/multipart_fat_filesystem/main.cpp index 300439f6f32..12d21586792 100644 --- a/storage/filesystem/fat/tests/TESTS/fat/multipart_fat_filesystem/main.cpp +++ b/storage/filesystem/fat/tests/TESTS/fat/multipart_fat_filesystem/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/include/filesystem/Dir.h b/storage/filesystem/include/filesystem/Dir.h index 4e933bfa4b4..06aeca1cd2c 100644 --- a/storage/filesystem/include/filesystem/Dir.h +++ b/storage/filesystem/include/filesystem/Dir.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/include/filesystem/File.h b/storage/filesystem/include/filesystem/File.h index 349c5926a5c..0064225e209 100644 --- a/storage/filesystem/include/filesystem/File.h +++ b/storage/filesystem/include/filesystem/File.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/include/filesystem/FileSystem.h b/storage/filesystem/include/filesystem/FileSystem.h index a11fa9922d8..bf15244796f 100644 --- a/storage/filesystem/include/filesystem/FileSystem.h +++ b/storage/filesystem/include/filesystem/FileSystem.h @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/include/filesystem/mbed_filesystem.h b/storage/filesystem/include/filesystem/mbed_filesystem.h index 52353d6b155..454d05da73b 100644 --- a/storage/filesystem/include/filesystem/mbed_filesystem.h +++ b/storage/filesystem/include/filesystem/mbed_filesystem.h @@ -1,5 +1,6 @@ /* filesystem * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/include/littlefs/LittleFileSystem.h b/storage/filesystem/littlefs/include/littlefs/LittleFileSystem.h index 1c7830fab2f..5cf5e71f45d 100644 --- a/storage/filesystem/littlefs/include/littlefs/LittleFileSystem.h +++ b/storage/filesystem/littlefs/include/littlefs/LittleFileSystem.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/source/LittleFileSystem.cpp b/storage/filesystem/littlefs/source/LittleFileSystem.cpp index df2476b772c..5f76a04861d 100644 --- a/storage/filesystem/littlefs/source/LittleFileSystem.cpp +++ b/storage/filesystem/littlefs/source/LittleFileSystem.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem/dirs/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem/dirs/main.cpp index 41d965116b6..bca1ba2133a 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem/dirs/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem/dirs/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem/files/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem/files/main.cpp index d32aef0c20c..8397f8ab66f 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem/files/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem/files/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem/interspersed/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem/interspersed/main.cpp index 60cb96b2224..695717977af 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem/interspersed/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem/interspersed/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem/seek/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem/seek/main.cpp index 82dfc327cea..2f32478fa62 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem/seek/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem/seek/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem_integration/format/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem_integration/format/main.cpp index a086c2a8881..7639fae5742 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem_integration/format/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem_integration/format/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/resilience/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/resilience/main.cpp index 2d9660c2c86..66e47e8b50a 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/resilience/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/resilience/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/resilience_functional/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/resilience_functional/main.cpp index a3ba52109a9..009ed09763c 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/resilience_functional/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/resilience_functional/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/wear_leveling/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/wear_leveling/main.cpp index ab349c78abd..9b98c7233a3 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/wear_leveling/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem_recovery/wear_leveling/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/dirs/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/dirs/main.cpp index 85b1f354c46..f4cea506da4 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/dirs/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/dirs/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/files/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/files/main.cpp index 661e3a8d5a4..22529c48286 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/files/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/files/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/interspersed/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/interspersed/main.cpp index 71724e92442..bf61febb8aa 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/interspersed/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/interspersed/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/seek/main.cpp b/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/seek/main.cpp index 9efd14fc6a3..81b34baa5b7 100644 --- a/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/seek/main.cpp +++ b/storage/filesystem/littlefs/tests/TESTS/filesystem_retarget/seek/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/include/littlefsv2/LittleFileSystem2.h b/storage/filesystem/littlefsv2/include/littlefsv2/LittleFileSystem2.h index 65aa3b18efb..d753b3fb11f 100644 --- a/storage/filesystem/littlefsv2/include/littlefsv2/LittleFileSystem2.h +++ b/storage/filesystem/littlefsv2/include/littlefsv2/LittleFileSystem2.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/source/LittleFileSystem2.cpp b/storage/filesystem/littlefsv2/source/LittleFileSystem2.cpp index 2ce32613e76..ea270a48d3c 100644 --- a/storage/filesystem/littlefsv2/source/LittleFileSystem2.cpp +++ b/storage/filesystem/littlefsv2/source/LittleFileSystem2.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem/dirs/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem/dirs/main.cpp index 647a3a78032..cfa010215bf 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem/dirs/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem/dirs/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem/files/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem/files/main.cpp index 51d1a057bd5..04877bb9340 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem/files/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem/files/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem/interspersed/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem/interspersed/main.cpp index 9772ddf6af8..55d81717e72 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem/interspersed/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem/interspersed/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem/seek/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem/seek/main.cpp index 2d114b0fdfe..d7efea9a2d5 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem/seek/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem/seek/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_integration/format/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_integration/format/main.cpp index 390d532d7ed..025255a8a87 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_integration/format/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_integration/format/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/resilience/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/resilience/main.cpp index 802fb65a841..7b9d4df76e1 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/resilience/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/resilience/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/resilience_functional/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/resilience_functional/main.cpp index aa574a6e902..ad5586e71ff 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/resilience_functional/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/resilience_functional/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/wear_leveling/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/wear_leveling/main.cpp index a9b8973ce89..c5dd24695ea 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/wear_leveling/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_recovery/wear_leveling/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/dirs/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/dirs/main.cpp index 9761d1349ba..e25b0476269 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/dirs/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/dirs/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/files/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/files/main.cpp index 26ab217d0fa..dd23f3ef6ad 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/files/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/files/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/interspersed/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/interspersed/main.cpp index 01e2eca7197..a1555ad1778 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/interspersed/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/interspersed/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/seek/main.cpp b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/seek/main.cpp index 36a328cda81..d675638018a 100644 --- a/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/seek/main.cpp +++ b/storage/filesystem/littlefsv2/tests/TESTS/filesystem_retarget/seek/main.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/source/Dir.cpp b/storage/filesystem/source/Dir.cpp index bb20fea2446..11602aa1158 100644 --- a/storage/filesystem/source/Dir.cpp +++ b/storage/filesystem/source/Dir.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/source/File.cpp b/storage/filesystem/source/File.cpp index e669d543807..7355cb92434 100644 --- a/storage/filesystem/source/File.cpp +++ b/storage/filesystem/source/File.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/source/FileSystem.cpp b/storage/filesystem/source/FileSystem.cpp index ad9c5439476..702e3cc8737 100644 --- a/storage/filesystem/source/FileSystem.cpp +++ b/storage/filesystem/source/FileSystem.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/storage/filesystem/tests/TESTS/filesystem/general_filesystem/main.cpp b/storage/filesystem/tests/TESTS/filesystem/general_filesystem/main.cpp index b567039be74..2b4aaec1597 100644 --- a/storage/filesystem/tests/TESTS/filesystem/general_filesystem/main.cpp +++ b/storage/filesystem/tests/TESTS/filesystem/general_filesystem/main.cpp @@ -1,4 +1,5 @@ /* Copyright (c) 2017 ARM Limited +/* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/FVP_MPS2.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/FVP_MPS2.h index d7e7db45c2c..efa8b88343b 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/FVP_MPS2.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/FVP_MPS2.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PeripheralNames.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PeripheralNames.h index 4224fc874ab..46c6b692f43 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PeripheralNames.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PinNames.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PinNames.h index 062661e3798..5da2df9a54a 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PinNames.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PortNames.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PortNames.h index adb25a9adeb..c2ae371cb48 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PortNames.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/SDK/fpga.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/SDK/fpga.c index ffb7a17d1d2..0176f683135 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/SDK/fpga.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/SDK/fpga.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/SDK/fpga.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/SDK/fpga.h index aa2ba776374..1b93bc2e4fe 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/SDK/fpga.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/SDK/fpga.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/CMSDK_CM0.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/CMSDK_CM0.h index 1daab820b30..d9b4fef1633 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/CMSDK_CM0.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/CMSDK_CM0.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/cmsis.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/cmsis.h index c4e6875b6e8..0a7f5df18d4 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/cmsis.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/cmsis.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/cmsis_nvic.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/cmsis_nvic.h index 37bb7929271..7f4b3d04c73 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/cmsis_nvic.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/cmsis_nvic.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/peripherallink.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/peripherallink.h index 29bad23617f..6be256431ec 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/peripherallink.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/peripherallink.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/system_CMSDK_CM0.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/system_CMSDK_CM0.c index 33cb7d64b13..61b2d518ed8 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/system_CMSDK_CM0.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/system_CMSDK_CM0.c @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/system_CMSDK_CM0.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/system_CMSDK_CM0.h index dc533c9e343..7512d7f04e9 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/system_CMSDK_CM0.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0/device/system_CMSDK_CM0.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/CMSDK_CM0plus.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/CMSDK_CM0plus.h index 1a6833ecafd..1ed91dcf409 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/CMSDK_CM0plus.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/CMSDK_CM0plus.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/cmsis.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/cmsis.h index 92b972ee179..bf1d93c04d9 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/cmsis.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/cmsis.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/cmsis_nvic.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/cmsis_nvic.h index 94619a9e556..d71cfe6370c 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/cmsis_nvic.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/cmsis_nvic.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/peripherallink.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/peripherallink.h index 29bad23617f..6be256431ec 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/peripherallink.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/peripherallink.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/system_CMSDK_CM0plus.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/system_CMSDK_CM0plus.c index 71d075705db..b9430a927fb 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/system_CMSDK_CM0plus.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/system_CMSDK_CM0plus.c @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/system_CMSDK_CM0plus.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/system_CMSDK_CM0plus.h index 75eda4c7aae..29d43ab5f62 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/system_CMSDK_CM0plus.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M0P/device/system_CMSDK_CM0plus.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/CMSDK_CM3.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/CMSDK_CM3.h index 0b4746d1a73..23c54539ae7 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/CMSDK_CM3.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/CMSDK_CM3.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/cmsis.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/cmsis.h index 383b0ade0ff..03d7d85039c 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/cmsis.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/cmsis.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/cmsis_nvic.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/cmsis_nvic.h index 37bb7929271..7f4b3d04c73 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/cmsis_nvic.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/cmsis_nvic.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/peripherallink.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/peripherallink.h index 29bad23617f..6be256431ec 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/peripherallink.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/peripherallink.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/system_CMSDK_CM3.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/system_CMSDK_CM3.c index 45983f9dc79..d3391cb3889 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/system_CMSDK_CM3.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/system_CMSDK_CM3.c @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/system_CMSDK_CM3.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/system_CMSDK_CM3.h index f55970385c8..748eafa5e06 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/system_CMSDK_CM3.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M3/device/system_CMSDK_CM3.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/CMSDK_CM4.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/CMSDK_CM4.h index a7bb39bfe94..78fd6329d48 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/CMSDK_CM4.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/CMSDK_CM4.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/cmsis.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/cmsis.h index 5a1dec25365..5da209dfc89 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/cmsis.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/cmsis.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/cmsis_nvic.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/cmsis_nvic.h index 94619a9e556..d71cfe6370c 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/cmsis_nvic.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/cmsis_nvic.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/peripherallink.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/peripherallink.h index 29bad23617f..6be256431ec 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/peripherallink.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/peripherallink.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/system_CMSDK_CM4.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/system_CMSDK_CM4.c index 401f9f69ac9..65f28f86862 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/system_CMSDK_CM4.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/system_CMSDK_CM4.c @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/system_CMSDK_CM4.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/system_CMSDK_CM4.h index 7eddb44ba60..cf809b32ffd 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/system_CMSDK_CM4.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M4/device/system_CMSDK_CM4.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/CMSDK_CM7.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/CMSDK_CM7.h index 2b82b87ef4d..c71e0ff15f2 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/CMSDK_CM7.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/CMSDK_CM7.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/cmsis.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/cmsis.h index 416c078f9b3..ee1c001fe41 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/cmsis.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/cmsis.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/cmsis_nvic.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/cmsis_nvic.h index 94619a9e556..d71cfe6370c 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/cmsis_nvic.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/cmsis_nvic.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/peripherallink.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/peripherallink.h index 29bad23617f..6be256431ec 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/peripherallink.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/peripherallink.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/system_CMSDK_CM7.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/system_CMSDK_CM7.c index 6e543668d19..51103484e4a 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/system_CMSDK_CM7.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/system_CMSDK_CM7.c @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/system_CMSDK_CM7.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/system_CMSDK_CM7.h index afe92f2b908..9df788c18ff 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/system_CMSDK_CM7.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/TARGET_FVP_MPS2_M7/device/system_CMSDK_CM7.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/analogin_api.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/analogin_api.c index 3399138b0f9..afc19da0d88 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/analogin_api.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/device.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/device.h index 97ace26e8b8..16a7e6a68c7 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/device.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/device.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/drivers/lan91c111.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/drivers/lan91c111.c index 25d3e2b9338..f0c41854952 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/drivers/lan91c111.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/drivers/lan91c111.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/drivers/lan91c111.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/drivers/lan91c111.h index 7e09d1517b7..18dbfbdedd9 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/drivers/lan91c111.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/drivers/lan91c111.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/flash_api.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/flash_api.c index 7e0f7bd4d16..e5b97e04c72 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/flash_api.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/flash_api.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2017-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_api.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_api.c index 5cfdd573c70..71be74f57b1 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_api.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_irq_api.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_irq_api.c index fbc0fc2f25b..7fa3bc16376 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_irq_api.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_object.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_object.h index 84db0c00223..067895c78e3 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_object.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/i2c_api.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/i2c_api.c index 17fad0f8099..2a33503eefd 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/i2c_api.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/objects.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/objects.h index ef09fd7f0bf..68b2dfde799 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/objects.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/pinmap.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/pinmap.c index a6544ca50f0..5dcb4d3e15a 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/pinmap.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/port_api.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/port_api.c index 3766d2020af..11e46bf78cf 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/port_api.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/port_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/serial_api.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/serial_api.c index cda22d420d0..d0826478095 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/serial_api.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/spi_api.c b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/spi_api.c index e63d395d06d..c661cf5d736 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/spi_api.c +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/spi_def.h b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/spi_def.h index bb686eefa7a..516a41880f4 100644 --- a/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/spi_def.h +++ b/targets/TARGET_ARM_FM/TARGET_FVP_MPS2/spi_def.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_FM/mbed_rtx.h b/targets/TARGET_ARM_FM/mbed_rtx.h index ce1f1e5c0df..1b1ee47e53f 100644 --- a/targets/TARGET_ARM_FM/mbed_rtx.h +++ b/targets/TARGET_ARM_FM/mbed_rtx.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PeripheralNames.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PeripheralNames.h index 3e1e9218011..b4188d59b3a 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PeripheralNames.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PinNames.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PinNames.h index 89d5431f474..915add6d319 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PinNames.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PortNames.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PortNames.h index 983190e499d..86b2e048823 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PortNames.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/analogin_api.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/analogin_api.c index 323d5ee87c1..0550a36fa60 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/analogin_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/cmsdk_ticker.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/cmsdk_ticker.c index 74dbc555886..be3ff14b907 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/cmsdk_ticker.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/cmsdk_ticker.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/cmsdk_ticker.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/cmsdk_ticker.h index ecf59a0b0c6..4d8d9941b3a 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/cmsdk_ticker.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/cmsdk_ticker.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device.h index 24f0b5b5ea2..83766597119 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/cmsis.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/cmsis.h index e4a6936a221..4287691ade9 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/cmsis.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/cmsis.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2015-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/cmsis_nvic.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/cmsis_nvic.h index bafeb37f5a1..93699eba54b 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/cmsis_nvic.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/cmsis_nvic.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2015-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/device_cfg.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/device_cfg.h index de66a69adbb..af2ba2ac7b0 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/device_cfg.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/device_cfg.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_gpio_drv.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_gpio_drv.c index e48ec7d7d20..34710df8b40 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_gpio_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_gpio_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_gpio_drv.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_gpio_drv.h index 713d8db9f21..96a7c83d564 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_gpio_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_gpio_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_mps2_io_drv.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_mps2_io_drv.c index 76eb7704b2e..615bcecca5c 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_mps2_io_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_mps2_io_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_mps2_io_drv.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_mps2_io_drv.h index 16e09cdb688..8aa5cc5d047 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_mps2_io_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_mps2_io_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_uart_drv.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_uart_drv.c index 0f5020d93b2..73a44106420 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_uart_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_uart_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_uart_drv.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_uart_drv.h index 59ad29eb525..6df9d0eebcf 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_uart_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/arm_uart_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/dualtimer_cmsdk_drv.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/dualtimer_cmsdk_drv.c index b3c2ea2cc44..15e30e1f22c 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/dualtimer_cmsdk_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/dualtimer_cmsdk_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/dualtimer_cmsdk_drv.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/dualtimer_cmsdk_drv.h index 50a8e1bf752..adb77b2b36c 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/dualtimer_cmsdk_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/dualtimer_cmsdk_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/rtc_pl031_drv.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/rtc_pl031_drv.c index dc53cec8cf5..93a37f33bbd 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/rtc_pl031_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/rtc_pl031_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/rtc_pl031_drv.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/rtc_pl031_drv.h index c99f37036df..ad317af49dc 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/rtc_pl031_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/rtc_pl031_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/smsc9220_eth_drv.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/smsc9220_eth_drv.c index 3ef7501f185..289ac873659 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/smsc9220_eth_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/smsc9220_eth_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/smsc9220_eth_drv.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/smsc9220_eth_drv.h index 296bb597459..073b84e2e7f 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/smsc9220_eth_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/smsc9220_eth_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/spi_pl022_drv.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/spi_pl022_drv.c index 113068e3dca..9d65e2b0604 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/spi_pl022_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/spi_pl022_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/spi_pl022_drv.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/spi_pl022_drv.h index 49864bb4454..7ed5fd7559b 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/spi_pl022_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/spi_pl022_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/timer_cmsdk/timer_cmsdk_drv.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/timer_cmsdk/timer_cmsdk_drv.c index f9ab1007590..e75bf408cac 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/timer_cmsdk/timer_cmsdk_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/timer_cmsdk/timer_cmsdk_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/timer_cmsdk/timer_cmsdk_drv.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/timer_cmsdk/timer_cmsdk_drv.h index c84d7718774..4ea32008520 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/timer_cmsdk/timer_cmsdk_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/drivers/timer_cmsdk/timer_cmsdk_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/memory_zones.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/memory_zones.h index 0e67c01ac03..22261d1f1fd 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/memory_zones.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/memory_zones.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/platform_devices.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/platform_devices.c index 2fbf8921ff8..42bbf174765 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/platform_devices.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/platform_devices.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2017-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/platform_devices.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/platform_devices.h index 6e03e3d494e..5e44b3f6d9b 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/platform_devices.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/device/platform_devices.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2017-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/flash_api.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/flash_api.c index a86a95fb9d1..753110fbbd9 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/flash_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/flash_api.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2017-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_api.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_api.c index 2458569ae79..c2743a052bc 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_irq_api.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_irq_api.c index ad8740c00a3..4c1d47d5068 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_irq_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_objects.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_objects.h index 3d92d68c803..a5a51677448 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_objects.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/gpio_objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/i2c_api.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/i2c_api.c index 09d755c565c..02af9a8a568 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/i2c_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/lp_ticker.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/lp_ticker.c index 258b7fe4b2b..dd5c5d67a50 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/lp_ticker.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/lp_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/mbed_overrides.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/mbed_overrides.c index 2fdfa0d75ee..fb9b58f51e8 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/mbed_overrides.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/mbed_overrides.c @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/objects.h b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/objects.h index 9cf7f7fbed3..ace1b952696 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/objects.h +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/pinmap.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/pinmap.c index 719cb4beafb..b5809d16efd 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/pinmap.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/port_api.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/port_api.c index 11692bbb3d6..f048678e66d 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/port_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/port_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/rtc_api.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/rtc_api.c index d79aad572d8..a30dec2531c 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/rtc_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/rtc_api.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/serial_api.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/serial_api.c index 6140eb0b934..c48c9983a84 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/serial_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/sleep_api.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/sleep_api.c index 8b06e8d4378..ccf711ab9da 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/sleep_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/sleep_api.c @@ -3,6 +3,7 @@ /** @{*/ /* mbed Microcontroller Library * Copyright (c) 2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/spi_api.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/spi_api.c index 72b9a588e4e..d6cd2a49053 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/spi_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/trng_api.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/trng_api.c index 0eba70a2fad..abef89d06ba 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/trng_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/trng_api.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2017-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/us_ticker.c b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/us_ticker.c index aa04a6244ba..144313ca08f 100644 --- a/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/us_ticker.c +++ b/targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/PeripheralNames.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/PeripheralNames.h index 1fc24e238ca..2b5989f8c30 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/PeripheralNames.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/PinNames.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/PinNames.h index 544e17fbbb9..c808fd2c71f 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/PinNames.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/PortNames.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/PortNames.h index b8a39a01436..6ea65defc09 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/PortNames.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/ETH_MPS2.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/ETH_MPS2.c index 22e23b53223..8d270ccc842 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/ETH_MPS2.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/ETH_MPS2.c @@ -1,6 +1,7 @@ /* MPS2 Peripheral Library * * Copyright (c) 2006-2015 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/ETH_MPS2.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/ETH_MPS2.h index 10033b773f8..04120e29757 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/ETH_MPS2.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/ETH_MPS2.h @@ -1,6 +1,7 @@ /* MPS2 Peripheral Library * * Copyright (c) 2006-2015 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/fpga.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/fpga.c index a0111474c6f..bf1abe69c68 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/fpga.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/fpga.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/fpga.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/fpga.h index e4a055cfc04..7ff51bb7aae 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/fpga.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/fpga.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/mps2_ethernet_api.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/mps2_ethernet_api.c index 36f677985c4..59a84012b27 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/mps2_ethernet_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/mps2_ethernet_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/mps2_ethernet_api.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/mps2_ethernet_api.h index 2a15b24a6cd..59da020825f 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/mps2_ethernet_api.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/SDK/mps2_ethernet_api.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/CMSDK_CM0.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/CMSDK_CM0.h index 6b547b020cd..aca6e60276b 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/CMSDK_CM0.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/CMSDK_CM0.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/SMM_MPS2.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/SMM_MPS2.h index f0d07a3c30d..8eece39932b 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/SMM_MPS2.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/SMM_MPS2.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis.h index 843f1e4811e..c00d18d4778 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis_nvic.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis_nvic.c index 159fce69aeb..cc84eed41db 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis_nvic.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis_nvic.c @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis_nvic.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis_nvic.h index 8ad5fdcd634..7fe975bb708 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis_nvic.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/cmsis_nvic.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/peripherallink.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/peripherallink.h index 80541d90d31..590ab282064 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/peripherallink.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/peripherallink.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/system_CMSDK_CM0.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/system_CMSDK_CM0.c index 4adf1e4a115..3c5fa022d4a 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/system_CMSDK_CM0.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/system_CMSDK_CM0.c @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/system_CMSDK_CM0.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/system_CMSDK_CM0.h index cdbd1322422..2b992335e68 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/system_CMSDK_CM0.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0/device/system_CMSDK_CM0.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/CMSDK_CM0plus.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/CMSDK_CM0plus.h index 3ac5a76e4ba..1f270d91559 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/CMSDK_CM0plus.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/CMSDK_CM0plus.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/SMM_MPS2.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/SMM_MPS2.h index 34f1a94dd9e..60b01026f36 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/SMM_MPS2.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/SMM_MPS2.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/cmsis.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/cmsis.h index 42a187b43e2..4dee7cdfe81 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/cmsis.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/cmsis.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/cmsis_nvic.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/cmsis_nvic.h index e3cd294bf94..9a2b655568b 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/cmsis_nvic.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/cmsis_nvic.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/peripherallink.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/peripherallink.h index 80541d90d31..590ab282064 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/peripherallink.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/peripherallink.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/system_CMSDK_CM0plus.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/system_CMSDK_CM0plus.c index 2150db57afc..f5bb7c0e1e7 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/system_CMSDK_CM0plus.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/system_CMSDK_CM0plus.c @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/system_CMSDK_CM0plus.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/system_CMSDK_CM0plus.h index 8dce0ba0a57..47955fa3048 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/system_CMSDK_CM0plus.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M0P/device/system_CMSDK_CM0plus.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/CMSDK_CM3.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/CMSDK_CM3.h index c9db03f9414..9a8286aed54 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/CMSDK_CM3.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/CMSDK_CM3.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/SMM_MPS2.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/SMM_MPS2.h index f0d07a3c30d..8eece39932b 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/SMM_MPS2.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/SMM_MPS2.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/cmsis.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/cmsis.h index 9f5e1923768..e54d1819a81 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/cmsis.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/cmsis.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/cmsis_nvic.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/cmsis_nvic.h index e3cd294bf94..9a2b655568b 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/cmsis_nvic.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/cmsis_nvic.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/peripherallink.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/peripherallink.h index 80541d90d31..590ab282064 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/peripherallink.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/peripherallink.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/system_CMSDK_CM3.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/system_CMSDK_CM3.c index 06ee46c7104..e3921bb46bc 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/system_CMSDK_CM3.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/system_CMSDK_CM3.c @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/system_CMSDK_CM3.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/system_CMSDK_CM3.h index 15b2192f35b..a064fdd3aab 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/system_CMSDK_CM3.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M3/device/system_CMSDK_CM3.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/CMSDK_CM4.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/CMSDK_CM4.h index ca7b64a7ac2..c3ef7a91093 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/CMSDK_CM4.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/CMSDK_CM4.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/SMM_MPS2.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/SMM_MPS2.h index 3b514302355..c2ccc7b7013 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/SMM_MPS2.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/SMM_MPS2.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/cmsis.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/cmsis.h index 562e9abd116..a468b649a17 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/cmsis.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/cmsis.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/cmsis_nvic.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/cmsis_nvic.h index e3cd294bf94..9a2b655568b 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/cmsis_nvic.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/cmsis_nvic.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/peripherallink.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/peripherallink.h index 80541d90d31..590ab282064 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/peripherallink.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/peripherallink.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/system_CMSDK_CM4.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/system_CMSDK_CM4.c index 2b528a92c49..7ba73885f7b 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/system_CMSDK_CM4.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/system_CMSDK_CM4.c @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/system_CMSDK_CM4.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/system_CMSDK_CM4.h index c1cb7e25fcc..d74e1ac8866 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/system_CMSDK_CM4.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M4/device/system_CMSDK_CM4.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/CMSDK_CM7.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/CMSDK_CM7.h index 48a6bace984..5029a03fc3e 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/CMSDK_CM7.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/CMSDK_CM7.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/SMM_MPS2.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/SMM_MPS2.h index 5ccbd0a4d09..6997bb63dc1 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/SMM_MPS2.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/SMM_MPS2.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/cmsis.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/cmsis.h index 76d9f18a0f8..54409f8b65d 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/cmsis.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/cmsis.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2015 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/cmsis_nvic.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/cmsis_nvic.h index b530cb39a71..2eb9f908c8e 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/cmsis_nvic.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/cmsis_nvic.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2015 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/peripherallink.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/peripherallink.h index 94c315ae03f..07cae66cd87 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/peripherallink.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/peripherallink.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2015 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/system_CMSDK_CM7.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/system_CMSDK_CM7.c index 0424906a538..628d442714a 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/system_CMSDK_CM7.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/system_CMSDK_CM7.c @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/system_CMSDK_CM7.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/system_CMSDK_CM7.h index 09301b37ed7..bf285f47972 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/system_CMSDK_CM7.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/TARGET_MPS2_M7/device/system_CMSDK_CM7.h @@ -1,6 +1,7 @@ /* MPS2 CMSIS Library * * Copyright (c) 2006-2016 ARM Limited +* SPDX-License-Identifier: BSD-3-Clause * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/analogin_api.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/analogin_api.c index 60f8220be10..b2de8fdbd79 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/analogin_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/device.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/device.h index 6bc793863a5..e155b753d27 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/device.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_api.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_api.c index 66caa5e5ddf..b333ac74f23 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_irq_api.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_irq_api.c index bedf723bfc8..7a54736a2e2 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_irq_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_object.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_object.h index c5885431a62..7fcfe6a830c 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_object.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/i2c_api.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/i2c_api.c index a9e957b711e..de83d6c8c9f 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/i2c_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/objects.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/objects.h index b7653f86b48..d614aa0147a 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/objects.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/pinmap.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/pinmap.c index 1e0bbc61438..e75dc7a2190 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/pinmap.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/port_api.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/port_api.c index aafcc483d64..9d89c0621de 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/port_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/port_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/serial_api.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/serial_api.c index a9511b00ebb..a5caaa7fbca 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/serial_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/spi_api.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/spi_api.c index 897d07c2c2a..6fa0a8a1060 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/spi_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/spi_def.h b/targets/TARGET_ARM_SSG/TARGET_MPS2/spi_def.h index c6d61b84808..edbc7aa6279 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/spi_def.h +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/spi_def.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MPS2/us_ticker.c b/targets/TARGET_ARM_SSG/TARGET_MPS2/us_ticker.c index 66f0391f5b7..ef7e8ec1f44 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MPS2/us_ticker.c +++ b/targets/TARGET_ARM_SSG/TARGET_MPS2/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/cmsis.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/cmsis.h index 720bad28898..4c12c14159e 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/cmsis.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/cmsis.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2017-2020 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/device_definition.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/device_definition.c index b25575989e4..f4b10980a97 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/device_definition.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/device_definition.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2020 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/device_definition.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/device_definition.h index bbdae9ed85e..6d55b4f7f04 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/device_definition.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/device_definition.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2020 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/gpio_cmsdk_drv.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/gpio_cmsdk_drv.c index 70260697c18..5b0f841693e 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/gpio_cmsdk_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/gpio_cmsdk_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/gpio_cmsdk_drv.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/gpio_cmsdk_drv.h index 2671cc4abe4..ae87b589fc1 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/gpio_cmsdk_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/gpio_cmsdk_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/i2c_ip6510_drv.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/i2c_ip6510_drv.c index 8aea2b8fc2c..f4dfdeb563d 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/i2c_ip6510_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/i2c_ip6510_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2020 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/i2c_ip6510_drv.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/i2c_ip6510_drv.h index b0b6c039158..86941e9d606 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/i2c_ip6510_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/i2c_ip6510_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2020 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/musca_b1_scc_drv.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/musca_b1_scc_drv.c index 24fc04eb0b0..7a80d5f4527 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/musca_b1_scc_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/musca_b1_scc_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2019 Arm Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/musca_b1_scc_drv.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/musca_b1_scc_drv.h index 757f3a63bf2..13e1f463dcd 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/musca_b1_scc_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/musca_b1_scc_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2019 Arm Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_cmsdk_drv.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_cmsdk_drv.c index b051909b290..2b6c17bc6ba 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_cmsdk_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_cmsdk_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2019 Arm Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_cmsdk_drv.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_cmsdk_drv.h index a374e63b0db..fbeb07db691 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_cmsdk_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_cmsdk_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2019 Arm Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_gp_drv.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_gp_drv.c index 39b24710e6c..d465663c3bb 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_gp_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_gp_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_gp_drv.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_gp_drv.h index b30f823fc89..7f5ecb700ae 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_gp_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/timer_gp_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/uart_pl011_drv.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/uart_pl011_drv.c index dd6b9ed581c..5de1b4e0209 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/uart_pl011_drv.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/uart_pl011_drv.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/uart_pl011_drv.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/uart_pl011_drv.h index dcae737a92a..0ec6a64f517 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/uart_pl011_drv.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/drivers/uart_pl011_drv.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_base_address.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_base_address.h index 3ae6ebe9220..9c82c8a3ca0 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_base_address.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_base_address.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2009-2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_description.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_description.h index 6a10a89cb30..a79cc08ce09 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_description.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_description.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_irq.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_irq.h index f483e25c6cf..05633eb23e8 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_irq.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_irq.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_pins.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_pins.h index 1f201b86a60..f6becb54a0c 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_pins.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_pins.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_regs.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_regs.h index 12ecb7413c6..4c52965dab1 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_regs.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/platform_regs.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/system_core_init.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/system_core_init.c index bb0936803d2..40437b4837c 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/system_core_init.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/system_core_init.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2009-2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/system_core_init.h b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/system_core_init.h index 79d0b581a16..4090013cf64 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/system_core_init.h +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/device/system_core_init.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2009-2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/i2c_api.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/i2c_api.c index d459bad9428..adadf39edd3 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/i2c_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2020 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/lp_ticker.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/lp_ticker.c index 3a8f769e20f..cb1f46ceeaa 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/lp_ticker.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/lp_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/mbed_serial_platform.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/mbed_serial_platform.c index c27f7e2f535..3fb34e77e7a 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/mbed_serial_platform.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/mbed_serial_platform.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/pinmap_ns.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/pinmap_ns.c index 6e76089d8d4..77b396c833a 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/pinmap_ns.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/pinmap_ns.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2020 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/serial_api.c b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/serial_api.c index 2340f8b8a18..d01b6e57994 100644 --- a/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/serial_api.c +++ b/targets/TARGET_ARM_SSG/TARGET_MUSCA_B1/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2019 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Analog_Devices/mbed_rtx.h b/targets/TARGET_Analog_Devices/mbed_rtx.h index 04f126e9a09..5d1f14eae6e 100755 --- a/targets/TARGET_Analog_Devices/mbed_rtx.h +++ b/targets/TARGET_Analog_Devices/mbed_rtx.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/device_definition.c b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/device_definition.c index af6ac12c2e6..719b878d684 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/device_definition.c +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/device_definition.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2016-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * Copyright (c) 2020, Cypress Semiconductor Corporation. All rights reserved. * * Licensed under the Apache License Version 2.0 (the "License"); diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/device_definition.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/device_definition.h index efa3d3fcebc..efc5e3d1b09 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/device_definition.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/device_definition.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2017-2018 Arm Limited + * SPDX-License-Identifier: Apache-2.0 * Copyright (c) 2020, Cypress Semiconductor Corporation. All rights reserved. * * Licensed under the Apache License Version 2.0 (the "License"); diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/platform_base_address.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/platform_base_address.h index f90be772d92..9ff9d7af9a5 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/platform_base_address.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/platform_base_address.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2017-2019 Arm Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/platform_irq.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/platform_irq.h index 49a6da11f86..13798884123 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/platform_irq.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/device/COMPONENT_CM4/platform_irq.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2019 Arm Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 * Copyright (c) 2020 Cypress Semiconductor Corporation. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/partition/flash_layout.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/partition/flash_layout.h index 63609b12da6..4eec8bdfe59 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/partition/flash_layout.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/partition/flash_layout.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2017-2019 Arm Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 * Copyright (c) 2019-2020, Cypress Semiconductor Corporation. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/partition/region_defs.h b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/partition/region_defs.h index a83de6fe9c0..9a5aaa13e1e 100644 --- a/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/partition/region_defs.h +++ b/targets/TARGET_Cypress/TARGET_PSOC6/TARGET_CYTFM_064B0S2_4343W/partition/region_defs.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2017-2019 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 * Copyright (c) 2019-2020, Cypress Semiconductor Corporation. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/targets/TARGET_Freescale/TARGET_K20XX/PeripheralPins.h b/targets/TARGET_Freescale/TARGET_K20XX/PeripheralPins.h index d6b5cfbfd96..50a57403b54 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/PeripheralPins.h +++ b/targets/TARGET_Freescale/TARGET_K20XX/PeripheralPins.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/PortNames.h b/targets/TARGET_Freescale/TARGET_K20XX/PortNames.h index 12ef0647901..4977c5fb014 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/PortNames.h +++ b/targets/TARGET_Freescale/TARGET_K20XX/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/analogin_api.c b/targets/TARGET_Freescale/TARGET_K20XX/analogin_api.c index 9db6f213aa6..e43533eb93c 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/analogin_api.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/analogout_api.c b/targets/TARGET_Freescale/TARGET_K20XX/analogout_api.c index 2ebaedb7c6f..dfaf2b9169b 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/analogout_api.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/analogout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/clk_freqs.h b/targets/TARGET_Freescale/TARGET_K20XX/clk_freqs.h index 86d20762321..b04214ccd25 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/clk_freqs.h +++ b/targets/TARGET_Freescale/TARGET_K20XX/clk_freqs.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/gpio_api.c b/targets/TARGET_Freescale/TARGET_K20XX/gpio_api.c index 952412cbdcd..96054476994 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/gpio_api.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/gpio_irq_api.c b/targets/TARGET_Freescale/TARGET_K20XX/gpio_irq_api.c index ab3d58654c1..e66c5898f15 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/gpio_irq_api.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/gpio_object.h b/targets/TARGET_Freescale/TARGET_K20XX/gpio_object.h index 2ed459996b0..1e799f18d2a 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/gpio_object.h +++ b/targets/TARGET_Freescale/TARGET_K20XX/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/i2c_api.c b/targets/TARGET_Freescale/TARGET_K20XX/i2c_api.c index 6e3b8596a1e..973b4beefe3 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/i2c_api.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/objects.h b/targets/TARGET_Freescale/TARGET_K20XX/objects.h index 6067a60cd57..c0d2ef79c5b 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/objects.h +++ b/targets/TARGET_Freescale/TARGET_K20XX/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/pinmap.c b/targets/TARGET_Freescale/TARGET_K20XX/pinmap.c index 2971f9241e3..c9ffcd96917 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/pinmap.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/port_api.c b/targets/TARGET_Freescale/TARGET_K20XX/port_api.c index 27cfdfd8b45..8fd9fd32a5b 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/port_api.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/port_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/pwmout_api.c b/targets/TARGET_Freescale/TARGET_K20XX/pwmout_api.c index 3c7e25d7127..c861858b27c 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/pwmout_api.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/rtc_api.c b/targets/TARGET_Freescale/TARGET_K20XX/rtc_api.c index a8a1e297262..d90ab555b98 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/rtc_api.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/rtc_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/serial_api.c b/targets/TARGET_Freescale/TARGET_K20XX/serial_api.c index 78b91508b87..50c21d551d9 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/serial_api.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/sleep.c b/targets/TARGET_Freescale/TARGET_K20XX/sleep.c index a156294ebca..cf7e208c8f2 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/sleep.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/sleep.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_K20XX/spi_api.c b/targets/TARGET_Freescale/TARGET_K20XX/spi_api.c index 7c8d59a8523..ef0d73ba800 100644 --- a/targets/TARGET_Freescale/TARGET_K20XX/spi_api.c +++ b/targets/TARGET_Freescale/TARGET_K20XX/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/PeripheralPins.h b/targets/TARGET_Freescale/TARGET_KLXX/PeripheralPins.h index 6cff2fed829..f3cfbd23fff 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/PeripheralPins.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/PeripheralPins.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/PortNames.h b/targets/TARGET_Freescale/TARGET_KLXX/PortNames.h index 84831863f30..9415a352827 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/PortNames.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PeripheralNames.h b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PeripheralNames.h index c2b5d96188a..82ee46d01ff 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PeripheralNames.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PeripheralPins.c b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PeripheralPins.c index ef77ff1882d..1dea258c76e 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PeripheralPins.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PeripheralPins.c @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PinNames.h b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PinNames.h index 89ebb11aec7..f980ee4560a 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PinNames.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/device.h b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/device.h index 29a4e7a0b18..79aafa0259e 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/device.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/gpio_irq_api.c b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/gpio_irq_api.c index 844007d7c21..17022afcfa3 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/gpio_irq_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/mbed_overrides.c b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/mbed_overrides.c index b590bb0ebcc..102c75597c1 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/mbed_overrides.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/serial_api.c b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/serial_api.c index 21f54149ab8..7da437b5197 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/serial_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/spi_api.c b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/spi_api.c index 057a07e9deb..2b4c24f2a17 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/spi_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL25Z/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PeripheralNames.h b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PeripheralNames.h index f1a0182f23a..e2c4dec14b3 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PeripheralNames.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PeripheralPins.c b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PeripheralPins.c index 58057d178ab..7589220e3b6 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PeripheralPins.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PinNames.h b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PinNames.h index 83b2dae7b93..9f744586337 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PinNames.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/device.h b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/device.h index 29a4e7a0b18..79aafa0259e 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/device.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/flash_api.c b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/flash_api.c index 8639eba4a95..ff9d19cf86c 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/flash_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/flash_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/gpio_irq_api.c b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/gpio_irq_api.c index 5eb28a4fe09..ebffa752923 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/gpio_irq_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/mbed_overrides.c b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/mbed_overrides.c index b590bb0ebcc..102c75597c1 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/mbed_overrides.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/serial_api.c b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/serial_api.c index d86a713c1a5..f38c3c8424a 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/serial_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/spi_api.c b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/spi_api.c index 07e690fe934..4b4505ee399 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/spi_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/TARGET_KL46Z/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/analogin_api.c b/targets/TARGET_Freescale/TARGET_KLXX/analogin_api.c index 17d12f36196..f378559057c 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/analogin_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/analogout_api.c b/targets/TARGET_Freescale/TARGET_KLXX/analogout_api.c index 7611462a1e1..078c3cea83f 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/analogout_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/analogout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/clk_freqs.h b/targets/TARGET_Freescale/TARGET_KLXX/clk_freqs.h index 1b4ace826ac..f227e62623f 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/clk_freqs.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/clk_freqs.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/gpio_api.c b/targets/TARGET_Freescale/TARGET_KLXX/gpio_api.c index 79c00137bc7..14a0c704d7f 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/gpio_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/gpio_object.h b/targets/TARGET_Freescale/TARGET_KLXX/gpio_object.h index fe6d6c1e05c..cbd4603a678 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/gpio_object.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/i2c_api.c b/targets/TARGET_Freescale/TARGET_KLXX/i2c_api.c index 8cb96962ced..cdf9eca6721 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/i2c_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/objects.h b/targets/TARGET_Freescale/TARGET_KLXX/objects.h index cced33fe3d0..cae1a7b04c5 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/objects.h +++ b/targets/TARGET_Freescale/TARGET_KLXX/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/pinmap.c b/targets/TARGET_Freescale/TARGET_KLXX/pinmap.c index c67d2376763..b7c6f20b6ea 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/pinmap.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/port_api.c b/targets/TARGET_Freescale/TARGET_KLXX/port_api.c index 30c24ef720c..cb6fc73b8b6 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/port_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/port_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/pwmout_api.c b/targets/TARGET_Freescale/TARGET_KLXX/pwmout_api.c index 35bb782ccef..0eaed3845a5 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/pwmout_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/rtc_api.c b/targets/TARGET_Freescale/TARGET_KLXX/rtc_api.c index 4832258f89d..32c14541286 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/rtc_api.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/rtc_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/sleep.c b/targets/TARGET_Freescale/TARGET_KLXX/sleep.c index a3bb82a1091..fd2666c65b9 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/sleep.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/sleep.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_KLXX/us_ticker.c b/targets/TARGET_Freescale/TARGET_KLXX/us_ticker.c index f314c2c135e..dbd39fec363 100644 --- a/targets/TARGET_Freescale/TARGET_KLXX/us_ticker.c +++ b/targets/TARGET_Freescale/TARGET_KLXX/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralNames.h index 589c2081fbb..f28db9db489 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralPins.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralPins.c index 89d75177bad..8e43afb0c42 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralPins.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PinNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PinNames.h index 7ff8b86d758..b4b996664c6 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PinNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/device.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/device.h index 29a4e7a0b18..79aafa0259e 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/device.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/mbed_overrides.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/mbed_overrides.c index a80b1e7a22a..5bd05d7e281 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/mbed_overrides.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/pwmout_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/pwmout_api.c index 346b2d49001..931e11d9e57 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/pwmout_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/serial_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/serial_api.c index 0981d560584..44f776d2e1b 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/serial_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/spi_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/spi_api.c index 12d3eacd511..725d0b6e757 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/spi_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/us_ticker.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/us_ticker.c index ef22cb89a2c..a1e77443600 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/us_ticker.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PeripheralNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PeripheralNames.h index c9371be81a5..9cc4dd6a760 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PeripheralNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PeripheralPins.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PeripheralPins.c index c725a2063a9..a9f26ccf440 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PeripheralPins.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PinNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PinNames.h index a70a1f8eaf6..dcf9f001c56 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PinNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/device.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/device.h index c1dc0fa8eb9..4133cbfd23f 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/device.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/mbed_overrides.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/mbed_overrides.c index dbec2c7c68d..0d228aa0feb 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/mbed_overrides.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/TARGET_FRDM/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/pwmout_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/pwmout_api.c index 346b2d49001..931e11d9e57 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/pwmout_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/serial_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/serial_api.c index 9e46f9ca056..7e54d19c021 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/serial_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/spi_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/spi_api.c index 532d64b682b..c3f19765843 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/spi_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/us_ticker.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/us_ticker.c index dd2589f32a4..7eed613f3c7 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/us_ticker.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K82F/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PeripheralNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PeripheralNames.h index c5f47e20151..60219a30e54 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PeripheralNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PeripheralPins.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PeripheralPins.c index 4f514e438bb..6082252ed50 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PeripheralPins.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PinNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PinNames.h index 37ddd837fdd..dd4ece5fd01 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PinNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/device.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/device.h index 29a4e7a0b18..79aafa0259e 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/device.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/mbed_overrides.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/mbed_overrides.c index a85b0e651c9..a0b322e0722 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/mbed_overrides.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/TARGET_FRDM/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/pwmout_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/pwmout_api.c index 87b9c6d9720..aec12490f01 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/pwmout_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/serial_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/serial_api.c index 122a271c0db..4f211f22d0e 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/serial_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/spi_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/spi_api.c index 88880e8024e..b335ddeb14d 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/spi_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/us_ticker.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/us_ticker.c index bffd5610a3f..a4b92b43e06 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/us_ticker.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL27Z/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PeripheralNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PeripheralNames.h index aadbf0c23d4..aad11b12859 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PeripheralNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PeripheralPins.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PeripheralPins.c index 644f6961138..9d92dd42f3d 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PeripheralPins.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PinNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PinNames.h index 081010164cf..9b30e78f20e 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PinNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/device.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/device.h index 29a4e7a0b18..79aafa0259e 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/device.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/mbed_overrides.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/mbed_overrides.c index a85b0e651c9..a0b322e0722 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/mbed_overrides.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/TARGET_FRDM/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/pwmout_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/pwmout_api.c index 87b9c6d9720..aec12490f01 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/pwmout_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/serial_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/serial_api.c index 2d769a73b81..340400927e5 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/serial_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/spi_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/spi_api.c index 88880e8024e..b335ddeb14d 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/spi_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/us_ticker.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/us_ticker.c index bffd5610a3f..a4b92b43e06 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/us_ticker.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KL43Z/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PeripheralNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PeripheralNames.h index 16c516e05cc..4bb940e68e9 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PeripheralNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PeripheralPins.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PeripheralPins.c index 85ed416b468..9aae2d62b0a 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PeripheralPins.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PinNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PinNames.h index 1d1959bf9d8..17f2a780fb9 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PinNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/device.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/device.h index 29a4e7a0b18..79aafa0259e 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/device.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/mbed_overrides.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/mbed_overrides.c index aa7e31c942c..7d628e82147 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/mbed_overrides.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/TARGET_FRDM/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/pwmout_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/pwmout_api.c index 31b953c0419..5ca376d141b 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/pwmout_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/serial_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/serial_api.c index e6ca4df5e1f..675e101e007 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/serial_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/spi_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/spi_api.c index 12d3eacd511..725d0b6e757 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/spi_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/us_ticker.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/us_ticker.c index 68d8cf11e30..9bcdef96289 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/us_ticker.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_KW41Z/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PeripheralNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PeripheralNames.h index a471a6be718..60b4d5e7e45 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PeripheralNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PeripheralPins.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PeripheralPins.c index 50d938862f4..94cdb1c49ef 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PeripheralPins.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PinNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PinNames.h index 3533d831c7d..298d777c74b 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PinNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/device.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/device.h index 29a4e7a0b18..79aafa0259e 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/device.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/mbed_overrides.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/mbed_overrides.c index 75b27419457..a3912a2c5b2 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/mbed_overrides.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/TARGET_MCU_K22F512/TARGET_FRDM/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/pwmout_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/pwmout_api.c index 6efe704b14c..db0e0b19e48 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/pwmout_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/serial_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/serial_api.c index f4f6c5555b6..25e8b8bd255 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/serial_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/spi_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/spi_api.c index 532d64b682b..c3f19765843 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/spi_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/us_ticker.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/us_ticker.c index dd2589f32a4..7eed613f3c7 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/us_ticker.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K22F/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralNames.h index 16134f00039..2a9b9f8de05 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2020 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralPinMaps.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralPinMaps.h index 45a61e90794..a759b6b2728 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralPinMaps.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralPinMaps.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2020 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralPins.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralPins.c index a20aa080baa..0a9244ea460 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralPins.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2020 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PinNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PinNames.h index b74c9775294..50ebbd4c16b 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PinNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/device.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/device.h index 29a4e7a0b18..79aafa0259e 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/device.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/mbed_overrides.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/mbed_overrides.c index a80b1e7a22a..5bd05d7e281 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/mbed_overrides.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PeripheralNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PeripheralNames.h index 687ca33049e..2e67bc3053a 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PeripheralNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PeripheralPins.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PeripheralPins.c index 86a8b70ad5d..e127ea219bf 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PeripheralPins.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PinNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PinNames.h index 7b950d1ba74..39e25575272 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PinNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/device.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/device.h index 29a4e7a0b18..79aafa0259e 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/device.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/mbed_overrides.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/mbed_overrides.c index 13694063f35..c45b69a716e 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/mbed_overrides.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_HEXIWEAR/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PeripheralNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PeripheralNames.h index c5005d473ce..62dc41e6467 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PeripheralNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PeripheralPins.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PeripheralPins.c index a41c0708f46..ed082513fe3 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PeripheralPins.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PinNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PinNames.h index 652f21dde7f..92962f47c16 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PinNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/device.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/device.h index 29a4e7a0b18..79aafa0259e 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/device.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/mbed_overrides.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/mbed_overrides.c index a80b1e7a22a..5bd05d7e281 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/mbed_overrides.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_SDT64B/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/mbed_crc_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/mbed_crc_api.c index d8de507ce48..5ae57df0f85 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/mbed_crc_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/mbed_crc_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/pwmout_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/pwmout_api.c index 805020c862e..7d5f6c22621 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/pwmout_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/reset_reason.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/reset_reason.c index 0009602f0dc..8f7b09ce35c 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/reset_reason.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/reset_reason.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/serial_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/serial_api.c index 98a9ec3dc03..9df593be688 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/serial_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/spi_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/spi_api.c index 2fa868c786e..a35f0a9cdc0 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/spi_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/us_ticker.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/us_ticker.c index 87ee099278d..3212f37e6f4 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/us_ticker.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/watchdog_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/watchdog_api.c index 44faa1c0865..f55e5dc117d 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/watchdog_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/watchdog_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/PeripheralPins.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/PeripheralPins.h index 0e8854ffa31..fe4528454a5 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/PeripheralPins.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/PeripheralPins.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2020 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/PortNames.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/PortNames.h index 476845b76d7..148bce2e3ed 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/PortNames.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogin_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogin_api.c index d74a4e3c3a5..3f95b4fd674 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogin_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogout_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogout_api.c index b2fcaba000f..3ac0474d03a 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogout_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_api.c index 908399adba4..7f6099f2bea 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_irq_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_irq_api.c index c33c5b0fa67..ce51b07d2f4 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_irq_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_object.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_object.h index dc605ae3a34..db559edbee4 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_object.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/i2c_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/i2c_api.c index ddb164aef5e..d9398c3483c 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/i2c_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/lp_ticker.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/lp_ticker.c index 5d66dbca2af..a9590950b03 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/lp_ticker.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/lp_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 - 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/objects.h b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/objects.h index 85b60041a31..b5b52137497 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/objects.h +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/pinmap.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/pinmap.c index 55cd001c234..e860d1ccdfc 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/pinmap.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/port_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/port_api.c index 02a7cee05d5..cd3a1c0f9da 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/port_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/port_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/rtc_api.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/rtc_api.c index 96ed417f668..1165230eb80 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/rtc_api.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/rtc_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/sleep.c b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/sleep.c index 5b7cfb532d7..bcb7227f945 100644 --- a/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/sleep.c +++ b/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/sleep.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/USBEndpoints_Kinetis.h b/targets/TARGET_Freescale/USBEndpoints_Kinetis.h index 8f2286a7f7e..260cd40cf2f 100644 --- a/targets/TARGET_Freescale/USBEndpoints_Kinetis.h +++ b/targets/TARGET_Freescale/USBEndpoints_Kinetis.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/USBPhyHw.h b/targets/TARGET_Freescale/USBPhyHw.h index eabb2f86023..e5586f022bf 100644 --- a/targets/TARGET_Freescale/USBPhyHw.h +++ b/targets/TARGET_Freescale/USBPhyHw.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/USBPhy_Kinetis.cpp b/targets/TARGET_Freescale/USBPhy_Kinetis.cpp index 0d59f12a9c7..70d4ed81583 100644 --- a/targets/TARGET_Freescale/USBPhy_Kinetis.cpp +++ b/targets/TARGET_Freescale/USBPhy_Kinetis.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Freescale/mbed_rtx.h b/targets/TARGET_Freescale/mbed_rtx.h index 13e23ebee17..1b7aa269738 100644 --- a/targets/TARGET_Freescale/mbed_rtx.h +++ b/targets/TARGET_Freescale/mbed_rtx.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Maxim/TARGET_MAX32600/device/device_nvic.c b/targets/TARGET_Maxim/TARGET_MAX32600/device/device_nvic.c index e28ceb1700d..0bea877fd7f 100644 --- a/targets/TARGET_Maxim/TARGET_MAX32600/device/device_nvic.c +++ b/targets/TARGET_Maxim/TARGET_MAX32600/device/device_nvic.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Maxim/TARGET_MAX32610/device/device_nvic.c b/targets/TARGET_Maxim/TARGET_MAX32610/device/device_nvic.c index e28ceb1700d..0bea877fd7f 100644 --- a/targets/TARGET_Maxim/TARGET_MAX32610/device/device_nvic.c +++ b/targets/TARGET_Maxim/TARGET_MAX32610/device/device_nvic.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Maxim/TARGET_MAX32620/device/device_nvic.c b/targets/TARGET_Maxim/TARGET_MAX32620/device/device_nvic.c index e28ceb1700d..0bea877fd7f 100644 --- a/targets/TARGET_Maxim/TARGET_MAX32620/device/device_nvic.c +++ b/targets/TARGET_Maxim/TARGET_MAX32620/device/device_nvic.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Maxim/TARGET_MAX32620C/device/device_nvic.c b/targets/TARGET_Maxim/TARGET_MAX32620C/device/device_nvic.c index e28ceb1700d..0bea877fd7f 100644 --- a/targets/TARGET_Maxim/TARGET_MAX32620C/device/device_nvic.c +++ b/targets/TARGET_Maxim/TARGET_MAX32620C/device/device_nvic.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Maxim/TARGET_MAX32625/device/device_nvic.c b/targets/TARGET_Maxim/TARGET_MAX32625/device/device_nvic.c index e28ceb1700d..0bea877fd7f 100644 --- a/targets/TARGET_Maxim/TARGET_MAX32625/device/device_nvic.c +++ b/targets/TARGET_Maxim/TARGET_MAX32625/device/device_nvic.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Maxim/TARGET_MAX32630/device/device_nvic.c b/targets/TARGET_Maxim/TARGET_MAX32630/device/device_nvic.c index e28ceb1700d..0bea877fd7f 100644 --- a/targets/TARGET_Maxim/TARGET_MAX32630/device/device_nvic.c +++ b/targets/TARGET_Maxim/TARGET_MAX32630/device/device_nvic.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Maxim/mbed_rtx.h b/targets/TARGET_Maxim/mbed_rtx.h index bb15f954912..e0d1114f904 100644 --- a/targets/TARGET_Maxim/mbed_rtx.h +++ b/targets/TARGET_Maxim/mbed_rtx.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52832/TARGET_NRF52_DK/device.h b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52832/TARGET_NRF52_DK/device.h index 2427e752ea9..a086e5b7f03 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52832/TARGET_NRF52_DK/device.h +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52832/TARGET_NRF52_DK/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52832/TARGET_SDT52832B/device.h b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52832/TARGET_SDT52832B/device.h index 2427e752ea9..a086e5b7f03 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52832/TARGET_SDT52832B/device.h +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52832/TARGET_SDT52832B/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/PeripheralPinMaps.h b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/PeripheralPinMaps.h index 22023d45cf6..0162047f31a 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/PeripheralPinMaps.h +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/PeripheralPinMaps.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_ARDUINO_NANO33BLE/device.h b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_ARDUINO_NANO33BLE/device.h index 2427e752ea9..a086e5b7f03 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_ARDUINO_NANO33BLE/device.h +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_ARDUINO_NANO33BLE/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_EP_ATLAS/device.h b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_EP_ATLAS/device.h index 2427e752ea9..a086e5b7f03 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_EP_ATLAS/device.h +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_EP_ATLAS/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_NRF52840_DK/device.h b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_NRF52840_DK/device.h index 6aa63582300..c57840c438e 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_NRF52840_DK/device.h +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_NRF52840_DK/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/itm_api.c b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/itm_api.c index 4e3437a6be5..10d5c55765f 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/itm_api.c +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/itm_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/object_owners.h b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/object_owners.h index 0751362fa3d..0c2116f0334 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/object_owners.h +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/object_owners.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/gpio_object.h b/targets/TARGET_NORDIC/TARGET_NRF5x/gpio_object.h index f7b621a9ed0..363724f6f77 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/gpio_object.h +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/lp_ticker.c b/targets/TARGET_NORDIC/TARGET_NRF5x/lp_ticker.c index 837a7fb5a37..2ac310b762c 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/lp_ticker.c +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/lp_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/pinmap.c b/targets/TARGET_NORDIC/TARGET_NRF5x/pinmap.c index 4aa4671c1da..38b95e597bf 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/pinmap.c +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NORDIC/mbed_rtx.h b/targets/TARGET_NORDIC/mbed_rtx.h index 4ba2929d998..081a8971dbc 100644 --- a/targets/TARGET_NORDIC/mbed_rtx.h +++ b/targets/TARGET_NORDIC/mbed_rtx.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NUVOTON/mbed_rtx.h b/targets/TARGET_NUVOTON/mbed_rtx.h index fbea6a72421..2050102e2f1 100644 --- a/targets/TARGET_NUVOTON/mbed_rtx.h +++ b/targets/TARGET_NUVOTON/mbed_rtx.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/PeripheralNames.h b/targets/TARGET_NXP/TARGET_LPC11U6X/PeripheralNames.h index 21a8a637ffe..f841828fdd5 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/PeripheralNames.h +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/PinNames.h b/targets/TARGET_NXP/TARGET_LPC11U6X/PinNames.h index 143c5775ea8..9934f8d7df1 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/PinNames.h +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2014 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/PortNames.h b/targets/TARGET_NXP/TARGET_LPC11U6X/PortNames.h index f332b05544a..01e005f3ce0 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/PortNames.h +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2014 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/analogin_api.c b/targets/TARGET_NXP/TARGET_LPC11U6X/analogin_api.c index 32187021768..ecd1e43a43a 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/analogin_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/device.h b/targets/TARGET_NXP/TARGET_LPC11U6X/device.h index 1b25d4c364a..652b73725dc 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/device.h +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2014 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_api.c b/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_api.c index ddf9ff402a1..3b9de54e394 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2014 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_irq_api.c b/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_irq_api.c index 3fbcdced299..91f4861fdb8 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_irq_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_object.h b/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_object.h index fe6d6c1e05c..cbd4603a678 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_object.h +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/i2c_api.c b/targets/TARGET_NXP/TARGET_LPC11U6X/i2c_api.c index 617bc2db513..1dacec90b08 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/i2c_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/objects.h b/targets/TARGET_NXP/TARGET_LPC11U6X/objects.h index 796b97abc43..ea8b4e7435d 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/objects.h +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/pinmap.c b/targets/TARGET_NXP/TARGET_LPC11U6X/pinmap.c index 548d1d58aba..69caa7c329c 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/pinmap.c +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/pwmout_api.c b/targets/TARGET_NXP/TARGET_LPC11U6X/pwmout_api.c index be7f9808ac2..8b2e1a6267e 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/pwmout_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/rtc_api.c b/targets/TARGET_NXP/TARGET_LPC11U6X/rtc_api.c index f535dc191aa..956713ee59b 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/rtc_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/rtc_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/serial_api.c b/targets/TARGET_NXP/TARGET_LPC11U6X/serial_api.c index f07c34b20dd..e63bbe00a7e 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/serial_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/sleep.c b/targets/TARGET_NXP/TARGET_LPC11U6X/sleep.c index b6d40228125..b5cd7996e31 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/sleep.c +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/sleep.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/spi_api.c b/targets/TARGET_NXP/TARGET_LPC11U6X/spi_api.c index 5219118715e..ccc382f3595 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/spi_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11U6X/us_ticker.c b/targets/TARGET_NXP/TARGET_LPC11U6X/us_ticker.c index 6dd9dd70d7d..f69ef463930 100644 --- a/targets/TARGET_NXP/TARGET_LPC11U6X/us_ticker.c +++ b/targets/TARGET_NXP/TARGET_LPC11U6X/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/PeripheralNames.h b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/PeripheralNames.h index 3ec662f11c8..22b0c61aa31 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/PeripheralNames.h +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/PortNames.h b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/PortNames.h index 4887fecb332..50be6209174 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/PortNames.h +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/TARGET_LPC11XX/PinNames.h b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/TARGET_LPC11XX/PinNames.h index 263fb3bb789..358b4c8366c 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/TARGET_LPC11XX/PinNames.h +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/TARGET_LPC11XX/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/TARGET_LPC11XX/device.h b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/TARGET_LPC11XX/device.h index 5d57c9de571..93d716d7aaf 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/TARGET_LPC11XX/device.h +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/TARGET_LPC11XX/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/analogin_api.c b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/analogin_api.c index b74e0d4f431..24a4e8ba777 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/analogin_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_api.c b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_api.c index 5875ca9e853..c5e1f448f3c 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_irq_api.c b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_irq_api.c index db111511d36..38a8e5b81ad 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_irq_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_object.h b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_object.h index f295911aaa9..f4ea36f5dc7 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_object.h +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/i2c_api.c b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/i2c_api.c index 0b483a9f1e3..e159db828d6 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/i2c_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/objects.h b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/objects.h index f98fd59233c..25e384a32b2 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/objects.h +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/pinmap.c b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/pinmap.c index 7dbb40c3863..71fdf6508a5 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/pinmap.c +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/port_api.c b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/port_api.c index 3dd911eed59..a06529b2d80 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/port_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/port_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/pwmout_api.c b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/pwmout_api.c index 90f9e794665..cd6240c1cc9 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/pwmout_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/serial_api.c b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/serial_api.c index 91c6073b051..c993f1d3f85 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/serial_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/sleep.c b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/sleep.c index 0eee902fd28..23409255d48 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/sleep.c +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/sleep.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/spi_api.c b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/spi_api.c index 407c3a9f1ac..632d1e5010a 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/spi_api.c +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/us_ticker.c b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/us_ticker.c index 7944b87c795..1db86c9a050 100644 --- a/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/us_ticker.c +++ b/targets/TARGET_NXP/TARGET_LPC11XX_11CXX/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/PeripheralNames.h b/targets/TARGET_NXP/TARGET_LPC176X/PeripheralNames.h index a8d1ee298f0..882c7209a2a 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/PeripheralNames.h +++ b/targets/TARGET_NXP/TARGET_LPC176X/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/PortNames.h b/targets/TARGET_NXP/TARGET_LPC176X/PortNames.h index 270cdeecb0c..506c414ee12 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/PortNames.h +++ b/targets/TARGET_NXP/TARGET_LPC176X/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/TARGET_ARCH_PRO/PinNames.h b/targets/TARGET_NXP/TARGET_LPC176X/TARGET_ARCH_PRO/PinNames.h index 00a8785f4e5..96d8a6e8ccb 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/TARGET_ARCH_PRO/PinNames.h +++ b/targets/TARGET_NXP/TARGET_LPC176X/TARGET_ARCH_PRO/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/TARGET_ARCH_PRO/device.h b/targets/TARGET_NXP/TARGET_LPC176X/TARGET_ARCH_PRO/device.h index 2427e752ea9..a086e5b7f03 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/TARGET_ARCH_PRO/device.h +++ b/targets/TARGET_NXP/TARGET_LPC176X/TARGET_ARCH_PRO/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/TARGET_MBED_LPC1768/PinNames.h b/targets/TARGET_NXP/TARGET_LPC176X/TARGET_MBED_LPC1768/PinNames.h index 4c022d0463f..5d272806326 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/TARGET_MBED_LPC1768/PinNames.h +++ b/targets/TARGET_NXP/TARGET_LPC176X/TARGET_MBED_LPC1768/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/TARGET_MBED_LPC1768/device.h b/targets/TARGET_NXP/TARGET_LPC176X/TARGET_MBED_LPC1768/device.h index 5d57c9de571..93d716d7aaf 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/TARGET_MBED_LPC1768/device.h +++ b/targets/TARGET_NXP/TARGET_LPC176X/TARGET_MBED_LPC1768/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/analogin_api.c b/targets/TARGET_NXP/TARGET_LPC176X/analogin_api.c index c964185e436..f3a455d1779 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/analogin_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/analogout_api.c b/targets/TARGET_NXP/TARGET_LPC176X/analogout_api.c index 2a87b1b1728..8bc7ab13dc0 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/analogout_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/analogout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/can_api.c b/targets/TARGET_NXP/TARGET_LPC176X/can_api.c index 754de27914b..07a7aa07b78 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/can_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/can_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/device/CRP.c b/targets/TARGET_NXP/TARGET_LPC176X/device/CRP.c index f2ae329670b..8cc66be02b0 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/device/CRP.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/device/CRP.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/device/flash_api.c b/targets/TARGET_NXP/TARGET_LPC176X/device/flash_api.c index 5693cd10b69..7a3dfadbea7 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/device/flash_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/device/flash_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/gpio_api.c b/targets/TARGET_NXP/TARGET_LPC176X/gpio_api.c index 6a133b67aab..cacd64c0721 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/gpio_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/gpio_irq_api.c b/targets/TARGET_NXP/TARGET_LPC176X/gpio_irq_api.c index f6ca2da1a17..74f7ce91920 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/gpio_irq_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/gpio_object.h b/targets/TARGET_NXP/TARGET_LPC176X/gpio_object.h index fe6d6c1e05c..cbd4603a678 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/gpio_object.h +++ b/targets/TARGET_NXP/TARGET_LPC176X/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/i2c_api.c b/targets/TARGET_NXP/TARGET_LPC176X/i2c_api.c index 759f06f4892..b7f632aeeec 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/i2c_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/objects.h b/targets/TARGET_NXP/TARGET_LPC176X/objects.h index 331ccc9ceba..a4774acd4db 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/objects.h +++ b/targets/TARGET_NXP/TARGET_LPC176X/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/pinmap.c b/targets/TARGET_NXP/TARGET_LPC176X/pinmap.c index d7af42e427d..19528908bde 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/pinmap.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/port_api.c b/targets/TARGET_NXP/TARGET_LPC176X/port_api.c index 24f6d2c2780..4057ee44850 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/port_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/port_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/pwmout_api.c b/targets/TARGET_NXP/TARGET_LPC176X/pwmout_api.c index 538bbfe7fb7..e49ae27957a 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/pwmout_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/rtc_api.c b/targets/TARGET_NXP/TARGET_LPC176X/rtc_api.c index f770530bacc..40591259605 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/rtc_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/rtc_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/serial_api.c b/targets/TARGET_NXP/TARGET_LPC176X/serial_api.c index b086b32eb06..15358039f6c 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/serial_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/sleep.c b/targets/TARGET_NXP/TARGET_LPC176X/sleep.c index 22127e07284..528054c61d7 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/sleep.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/sleep.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/spi_api.c b/targets/TARGET_NXP/TARGET_LPC176X/spi_api.c index 3386b39cd8b..6b5950777ce 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/spi_api.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_LPC176X/us_ticker.c b/targets/TARGET_NXP/TARGET_LPC176X/us_ticker.c index 0f459f27dd3..f5b94e82b6c 100644 --- a/targets/TARGET_NXP/TARGET_LPC176X/us_ticker.c +++ b/targets/TARGET_NXP/TARGET_LPC176X/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/PeripheralPins.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/PeripheralPins.h index 97ef45eb62e..427a67d7956 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/PeripheralPins.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/PeripheralPins.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/PortNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/PortNames.h index 82b38e2c7c3..70fd05d5c4e 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/PortNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/analogin_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/analogin_api.c index c0e3dfde33b..a80272c34f7 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/analogin_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_api.c index 76e9624341f..5d67a8ed960 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_irq_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_irq_api.c index f8fe706d630..4b8b51f6705 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_irq_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_object.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_object.h index dc605ae3a34..db559edbee4 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_object.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/i2c_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/i2c_api.c index 960622d8999..ea698934250 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/i2c_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/lp_ticker.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/lp_ticker.c index 57001798df3..8d705d98263 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/lp_ticker.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/lp_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/objects.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/objects.h index 419199b9028..a45ba97d7ad 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/objects.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/pinmap.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/pinmap.c index 0f85ff05207..15c3f6e7fc9 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/pinmap.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/port_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/port_api.c index 745ade00edc..6ce196f9c6a 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/port_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/port_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/pwmout_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/pwmout_api.c index 1f8dd319d34..641cc7d5143 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/pwmout_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/rtc_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/rtc_api.c index 3e6f01a5f7e..d34a0c78857 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/rtc_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/rtc_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/serial_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/serial_api.c index 32199ca8f5c..0af83e98d30 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/serial_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/sleep.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/sleep.c index 310e96086e9..44e1edecf44 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/sleep.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/sleep.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/spi_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/spi_api.c index 0d7a7921137..5463cd693c8 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/spi_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/us_ticker.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/us_ticker.c index 66620b9805d..87c0dcc480f 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/us_ticker.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/watchdog_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/watchdog_api.c index 390b0b332d8..3010f27163c 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/watchdog_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_IMX/watchdog_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2020 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/PeripheralPins.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/PeripheralPins.h index 9d808894b1a..4c36ca47736 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/PeripheralPins.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/PeripheralPins.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/PortNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/PortNames.h index 3802d9b50f7..7f028d77a6a 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/PortNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/analogin_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/analogin_api.c index 048b6316428..80d264a7e12 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/analogin_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_api.c index 64f686b8df8..814e5b23c17 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_irq_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_irq_api.c index 7a67048baa3..2b8c102d81c 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_irq_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_object.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_object.h index dc605ae3a34..db559edbee4 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_object.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/i2c_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/i2c_api.c index 9fbdd0efbc0..68c3b050428 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/i2c_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/lp_analogin_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/lp_analogin_api.c index 8547ac0a283..3fa6a8aa401 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/lp_analogin_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/lp_analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/objects.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/objects.h index f71ba17944c..259a9fc1fdc 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/objects.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/pinmap.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/pinmap.c index a0100daf698..f962385b2d5 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/pinmap.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/port_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/port_api.c index a8a907a97d0..ee5d0a73046 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/port_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/port_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/rtc_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/rtc_api.c index c2e87bc96c5..38e2f9fa0fa 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/rtc_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/rtc_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/serial_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/serial_api.c index 2bf9b003623..4e7bfe62b00 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/serial_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2020 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/sleep.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/sleep.c index 16ef8bd4a6e..5acde229f07 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/sleep.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/sleep.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/spi_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/spi_api.c index aed936dd972..02f2f065595 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/spi_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/us_ticker.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/us_ticker.c index 26dbc8ac409..b600fceaa1d 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/us_ticker.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PeripheralNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PeripheralNames.h index c92261c088e..c102606c681 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PeripheralNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PeripheralPins.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PeripheralPins.c index b07d90f9ead..0b9a316af33 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PeripheralPins.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PinNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PinNames.h index 7857ad12e55..5abb45678cc 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PinNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/device.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/device.h index 1de3f8a64e0..6d8c7e4938e 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/device.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/mbed_overrides.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/mbed_overrides.c index a81f33665d0..c49ba714efa 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/mbed_overrides.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/TARGET_LPCXpresso/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/flash_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/flash_api.c index 467fa81c790..6f079dc0530 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/flash_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC54114/flash_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralNames.h index 60cbec67940..f3137e95235 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralPinMaps.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralPinMaps.h index f97afc8a051..afe265115a7 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralPinMaps.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralPinMaps.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralPins.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralPins.c index b6364d7ccf2..8ace3dd9a22 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralPins.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PinNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PinNames.h index 7ce39c341d9..91557fd8771 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PinNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/device.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/device.h index 8b41c568911..58ffeeb74a9 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/device.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/mbed_overrides.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/mbed_overrides.c index 0f21a68f547..2b2cf5168a4 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/mbed_overrides.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_LPCXpresso/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_M33_S/trng_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_M33_S/trng_api.c index f47fba24789..190be090065 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_M33_S/trng_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/TARGET_M33_S/trng_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/flash_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/flash_api.c index b683063c1b7..c4a3049e486 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/flash_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_LPC55S69/flash_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PeripheralNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PeripheralNames.h index bfa92505e93..05593456a61 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PeripheralNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PeripheralPins.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PeripheralPins.c index ca4d335efa3..00eae41497f 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PeripheralPins.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PinNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PinNames.h index 418d35ce631..1b1ba6575c2 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PinNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/device.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/device.h index 66a7c3b84e5..ce9edabbac7 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/device.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/mbed_overrides.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/mbed_overrides.c index ce568dcc87f..9876f8290f5 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/mbed_overrides.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_FF_LPC546XX/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PeripheralNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PeripheralNames.h index 0eaf69c9944..be95f32b454 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PeripheralNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PeripheralPins.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PeripheralPins.c index 75aea9ab6f0..9dc5b66bb87 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PeripheralPins.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PinNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PinNames.h index 00dcbf03e4f..f29f937d59b 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PinNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/device.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/device.h index 66a7c3b84e5..ce9edabbac7 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/device.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/mbed_overrides.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/mbed_overrides.c index dd95c1adedc..5be3bfef1fe 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/mbed_overrides.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/TARGET_LPCXpresso/mbed_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/flash_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/flash_api.c index 467fa81c790..6f079dc0530 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/flash_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/flash_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/trng_api.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/trng_api.c index 0a91355b598..c068a101998 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/trng_api.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MCU_LPC546XX/trng_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PeripheralNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PeripheralNames.h index 93dce23ac97..996940c64b5 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PeripheralNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PeripheralPins.c b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PeripheralPins.c index e1550413660..ed8a4731eee 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PeripheralPins.c +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PinNames.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PinNames.h index 69ab20bb190..d5a80b61c27 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PinNames.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/device.h b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/device.h index e24e9a85f1f..1bf02d52d11 100644 --- a/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/device.h +++ b/targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/USBEndpoints_LPC17_LPC23.h b/targets/TARGET_NXP/USBEndpoints_LPC17_LPC23.h index 09ab66540d6..e322665875e 100644 --- a/targets/TARGET_NXP/USBEndpoints_LPC17_LPC23.h +++ b/targets/TARGET_NXP/USBEndpoints_LPC17_LPC23.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/USBHAL_LPC17.cpp b/targets/TARGET_NXP/USBHAL_LPC17.cpp index 2da258ae8ed..67dca07de11 100644 --- a/targets/TARGET_NXP/USBHAL_LPC17.cpp +++ b/targets/TARGET_NXP/USBHAL_LPC17.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/USBPhyHw.h b/targets/TARGET_NXP/USBPhyHw.h index ad2ca502c52..973e14fa3b9 100644 --- a/targets/TARGET_NXP/USBPhyHw.h +++ b/targets/TARGET_NXP/USBPhyHw.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_NXP/mbed_rtx.h b/targets/TARGET_NXP/mbed_rtx.h index 8ca719cdd08..8d777fdaa64 100644 --- a/targets/TARGET_NXP/mbed_rtx.h +++ b/targets/TARGET_NXP/mbed_rtx.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/PeripheralPins.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/PeripheralPins.h index e25ceb20e1a..917964c940a 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/PeripheralPins.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/PeripheralPins.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PeripheralNames.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PeripheralNames.h index 5316378381d..50b6a6344b9 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PeripheralNames.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PeripheralPins.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PeripheralPins.c index b1ace66b787..1329992e718 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PeripheralPins.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PeripheralPins.c @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PinNames.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PinNames.h index d60a4b5a55a..56eb6ae46f1 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PinNames.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PortNames.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PortNames.h index 1c2413c94da..9986cfcadbe 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PortNames.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/TARGET_MBED_MBRZA1LU/reserved_pins.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/TARGET_MBED_MBRZA1LU/reserved_pins.h index 201e6fb008a..538e42fe239 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/TARGET_MBED_MBRZA1LU/reserved_pins.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/TARGET_MBED_MBRZA1LU/reserved_pins.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device.h index ba7b41162ff..85f01ff1203 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/mbed_drv_cfg.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/mbed_drv_cfg.h index 47f7da82e67..6f300cbe122 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/mbed_drv_cfg.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/mbed_drv_cfg.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/trng_api_esp32.cpp b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/trng_api_esp32.cpp index d99a1e1cbd6..d3a17aa780d 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/trng_api_esp32.cpp +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/trng_api_esp32.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PeripheralNames.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PeripheralNames.h index d04828b607f..3ec260742e2 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PeripheralNames.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PeripheralPins.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PeripheralPins.c index 0af90e3778b..d3897ce37b3 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PeripheralPins.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PeripheralPins.c @@ -1,6 +1,7 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PinNames.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PinNames.h index b5e935da081..da5b5335424 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PinNames.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PortNames.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PortNames.h index b5c36327059..61782717e22 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PortNames.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/PortNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/TARGET_MBED_MBRZA1H/reserved_pins.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/TARGET_MBED_MBRZA1H/reserved_pins.h index 201e6fb008a..538e42fe239 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/TARGET_MBED_MBRZA1H/reserved_pins.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/TARGET_MBED_MBRZA1H/reserved_pins.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device.h index ba7b41162ff..85f01ff1203 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device.h @@ -2,6 +2,7 @@ // Check the 'features' section of the target description in 'targets.json' for more details. /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/mbed_drv_cfg.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/mbed_drv_cfg.h index 257ab56d10e..854adcb389b 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/mbed_drv_cfg.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/mbed_drv_cfg.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/analogin_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/analogin_api.c index 1a2fc676121..d5b7d13cad0 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/analogin_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/analogin_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/can_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/can_api.c index 74992355a8b..6015146ec16 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/can_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/can_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/flash_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/flash_api.c index 188d78238d7..1e79d25bb57 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/flash_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/flash_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_api.c index ea1351c769e..3cfc0f47884 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_irq_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_irq_api.c index 5c0950f556e..78f1893b163 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_irq_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_irq_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_object.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_object.h index 211a4c870df..b7a166c8aa0 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_object.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/gpio_object.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/i2c_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/i2c_api.c index bbe6e262c02..90ed0b20f98 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/i2c_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/i2c_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/lp_ticker.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/lp_ticker.c index 1edbf34d2b2..e84aa27708c 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/lp_ticker.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/lp_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/mtu2.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/mtu2.c index 196cd11d9c1..70efdc82bca 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/mtu2.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/mtu2.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/mtu2.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/mtu2.h index 43cda3ef53a..5a9ac57ee63 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/mtu2.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/mtu2.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/objects.h b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/objects.h index c628977bcd6..4684743954b 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/objects.h +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/pinmap.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/pinmap.c index aa096aa1a1f..903651af30f 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/pinmap.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/pinmap.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/port_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/port_api.c index 91cc3056cb6..3dae2e6b295 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/port_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/port_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/pwmout_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/pwmout_api.c index a5d9a457322..85dbc7855aa 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/pwmout_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/rtc_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/rtc_api.c index 4175911ce7d..337828df660 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/rtc_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/rtc_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/serial_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/serial_api.c index 7bbac37a0ab..ace09575e81 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/serial_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/serial_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/sleep.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/sleep.c index b2aa4e8c7ef..0ce8fa0236c 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/sleep.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/sleep.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/spi_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/spi_api.c index a6e3aaca19b..294de6efba6 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/spi_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/spi_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/trng_api.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/trng_api.c index ea2980e8dde..3b5b3f0949a 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/trng_api.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/trng_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/us_ticker.c b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/us_ticker.c index 3fb58a38843..a02b01b60fd 100644 --- a/targets/TARGET_RENESAS/TARGET_RZ_A1XX/us_ticker.c +++ b/targets/TARGET_RENESAS/TARGET_RZ_A1XX/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_RENESAS/mbed_rtx.h b/targets/TARGET_RENESAS/mbed_rtx.h index 203b1b1b32c..2489092119b 100644 --- a/targets/TARGET_RENESAS/mbed_rtx.h +++ b/targets/TARGET_RENESAS/mbed_rtx.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/system_clock.c b/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/system_clock.c index 9790182e889..f828e46b699 100644 --- a/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/us_ticker_data.h index 4fc73ab4b89..fe0dab6a5c8 100644 --- a/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/system_clock.c b/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/system_clock.c index ad7c7c27943..f059a5080b5 100644 --- a/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/us_ticker_data.h index 360a5c5e9cb..c84c00d6cc8 100644 --- a/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F091xC/device/system_clock.c b/targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F091xC/device/system_clock.c index 10a70fe8608..369f3e782f9 100644 --- a/targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F091xC/device/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F091xC/device/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F091xC/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F091xC/device/us_ticker_data.h index 360a5c5e9cb..c84c00d6cc8 100644 --- a/targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F091xC/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F091xC/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F0/can_device.h b/targets/TARGET_STM/TARGET_STM32F0/can_device.h index b65da93c33f..645b5b00abb 100644 --- a/targets/TARGET_STM/TARGET_STM32F0/can_device.h +++ b/targets/TARGET_STM/TARGET_STM32F0/can_device.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103x8/system_clock.c b/targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103x8/system_clock.c index 431e3cf5640..3ae7bab64b8 100644 --- a/targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103x8/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103x8/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xB/system_clock.c b/targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xB/system_clock.c index 431e3cf5640..3ae7bab64b8 100644 --- a/targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xB/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F1/TARGET_STM32F103xB/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F1/can_device.h b/targets/TARGET_STM/TARGET_STM32F1/can_device.h index 5a670caa7dd..f47f7bd6444 100644 --- a/targets/TARGET_STM/TARGET_STM32F1/can_device.h +++ b/targets/TARGET_STM/TARGET_STM32F1/can_device.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F1/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F1/us_ticker_data.h index eb4ee916e07..0b2ee3ead09 100644 --- a/targets/TARGET_STM/TARGET_STM32F1/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F1/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/system_clock.c b/targets/TARGET_STM/TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/system_clock.c index 64992c98519..4a6e53fb10d 100644 --- a/targets/TARGET_STM/TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/us_ticker_data.h index be9f0158908..ef148a6acb9 100644 --- a/targets/TARGET_STM/TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F2/can_device.h b/targets/TARGET_STM/TARGET_STM32F2/can_device.h index 151c02c72d2..8e7730e0d89 100644 --- a/targets/TARGET_STM/TARGET_STM32F2/can_device.h +++ b/targets/TARGET_STM/TARGET_STM32F2/can_device.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F302x8/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F302x8/device/us_ticker_data.h index f727b6655fa..043950aee96 100644 --- a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F302x8/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F302x8/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303x8/TARGET_NUCLEO_F303K8/system_clock.c b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303x8/TARGET_NUCLEO_F303K8/system_clock.c index ca6b13f82f4..cf58c1c521f 100644 --- a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303x8/TARGET_NUCLEO_F303K8/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303x8/TARGET_NUCLEO_F303K8/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303x8/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303x8/device/us_ticker_data.h index f727b6655fa..043950aee96 100644 --- a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303x8/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303x8/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xC/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xC/device/us_ticker_data.h index f727b6655fa..043950aee96 100644 --- a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xC/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xC/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/TARGET_NUCLEO_F303RE/system_clock.c b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/TARGET_NUCLEO_F303RE/system_clock.c index 5fcac16f67f..16aecba37f6 100644 --- a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/TARGET_NUCLEO_F303RE/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/TARGET_NUCLEO_F303RE/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/TARGET_NUCLEO_F303ZE/system_clock.c b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/TARGET_NUCLEO_F303ZE/system_clock.c index 2617e46319c..a3e00a58fd6 100644 --- a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/TARGET_NUCLEO_F303ZE/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/TARGET_NUCLEO_F303ZE/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/device/us_ticker_data.h index f727b6655fa..043950aee96 100644 --- a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F303xE/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F334x8/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F334x8/device/us_ticker_data.h index f727b6655fa..043950aee96 100644 --- a/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F334x8/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F3/TARGET_STM32F334x8/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F3/can_device.h b/targets/TARGET_STM/TARGET_STM32F3/can_device.h index 6198c109844..846e081cf16 100644 --- a/targets/TARGET_STM/TARGET_STM32F3/can_device.h +++ b/targets/TARGET_STM/TARGET_STM32F3/can_device.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/ONBOARD_TELIT_HE910.cpp b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/ONBOARD_TELIT_HE910.cpp index 3f4f6947b04..13e2cf0afe7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/ONBOARD_TELIT_HE910.cpp +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/ONBOARD_TELIT_HE910.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/ONBOARD_TELIT_HE910.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/ONBOARD_TELIT_HE910.h index cd38da6a8ff..3a836212ea0 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/ONBOARD_TELIT_HE910.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/ONBOARD_TELIT_HE910.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/system_clock.c index 1d9cabc5eb9..3f0aa3f2011 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_MDOT_F411RE/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_MDOT_F411RE/system_clock.c index 32468783d8b..10a6c8ea0b4 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_MDOT_F411RE/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_MDOT_F411RE/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_MDOT_F411RE/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_MDOT_F411RE/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_MDOT_F411RE/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_MTS_MDOT_F411RE/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xC/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xC/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xC/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xC/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xE/TARGET_NUCLEO_F401RE/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xE/TARGET_NUCLEO_F401RE/system_clock.c index bbafb6ef0a2..e4f7bc97c37 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xE/TARGET_NUCLEO_F401RE/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xE/TARGET_NUCLEO_F401RE/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xE/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xE/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xE/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F401xE/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F407xG/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F407xG/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F407xG/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F407xG/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F410xB/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F410xB/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F410xB/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F410xB/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F411xE/TARGET_NUCLEO_F411RE/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F411xE/TARGET_NUCLEO_F411RE/system_clock.c index 22807783d5b..8afcb07bbd1 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F411xE/TARGET_NUCLEO_F411RE/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F411xE/TARGET_NUCLEO_F411RE/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F411xE/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F411xE/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F411xE/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F411xE/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_NUCLEO_F412ZG/PeripheralNames.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_NUCLEO_F412ZG/PeripheralNames.h index acf3d8371e4..e780d336686 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_NUCLEO_F412ZG/PeripheralNames.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_NUCLEO_F412ZG/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PeripheralNames.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PeripheralNames.h index 0be5095f039..fb891471c90 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PeripheralNames.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PeripheralPins.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PeripheralPins.c index ad824e64986..0d45beb5f43 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PeripheralPins.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PeripheralPins.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PinNames.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PinNames.h index 80e698307c3..06a43ae2de0 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PinNames.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/TARGET_WIO_EMW3166/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/objects.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/objects.h index 565319422ca..38a80cf9564 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/objects.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/system_clock.c index 6d75fda249e..9e4acab9c4f 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F412xG/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_DISCO_F413ZH/PeripheralNames.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_DISCO_F413ZH/PeripheralNames.h index 38fdae78b3f..8f522c3db11 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_DISCO_F413ZH/PeripheralNames.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_DISCO_F413ZH/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_DISCO_F413ZH/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_DISCO_F413ZH/system_clock.c index 5c7fdf83034..b8ec4fa79e9 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_DISCO_F413ZH/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_DISCO_F413ZH/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/ONBOARD_TELIT_HE910.cpp b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/ONBOARD_TELIT_HE910.cpp index 47687a78635..7ffefc2d3e7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/ONBOARD_TELIT_HE910.cpp +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/ONBOARD_TELIT_HE910.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/ONBOARD_TELIT_HE910.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/ONBOARD_TELIT_HE910.h index 5b77d7fbfd6..d5057d4835e 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/ONBOARD_TELIT_HE910.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/ONBOARD_TELIT_HE910.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/PeripheralNames.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/PeripheralNames.h index 3493e2cd25e..5a9099e50b8 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/PeripheralNames.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/system_clock.c index cd466147483..d885e88a950 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_MTS_DRAGONFLY_F413RH/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_NUCLEO_F413ZH/PeripheralNames.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_NUCLEO_F413ZH/PeripheralNames.h index 38fdae78b3f..8f522c3db11 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_NUCLEO_F413ZH/PeripheralNames.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_NUCLEO_F413ZH/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_NUCLEO_F413ZH/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_NUCLEO_F413ZH/system_clock.c index fd8d5644beb..c24c060972b 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_NUCLEO_F413ZH/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/TARGET_NUCLEO_F413ZH/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/objects.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/objects.h index 9b3aa0b3f9a..860e7669be6 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/objects.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_DISCO_F429ZI/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_DISCO_F429ZI/system_clock.c index ca6732026fc..910312cc722 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_DISCO_F429ZI/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_DISCO_F429ZI/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_NUCLEO_F429ZI/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_NUCLEO_F429ZI/system_clock.c index ca6732026fc..910312cc722 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_NUCLEO_F429ZI/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/TARGET_NUCLEO_F429ZI/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F437xG/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F437xG/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F437xG/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F437xG/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_NUCLEO_F439ZI/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_NUCLEO_F439ZI/system_clock.c index ca6732026fc..910312cc722 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_NUCLEO_F439ZI/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_NUCLEO_F439ZI/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/ONBOARD_QUECTEL_UG96.cpp b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/ONBOARD_QUECTEL_UG96.cpp index 246fde1c1bb..e6b370b4e16 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/ONBOARD_QUECTEL_UG96.cpp +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/ONBOARD_QUECTEL_UG96.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/ONBOARD_QUECTEL_UG96.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/ONBOARD_QUECTEL_UG96.h index a51f9316086..3764ac38035 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/ONBOARD_QUECTEL_UG96.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/ONBOARD_QUECTEL_UG96.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/system_clock.c index 0d48f3ea85a..75156a35571 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_3G/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_BG96/ONBOARD_QUECTEL_BG96.cpp b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_BG96/ONBOARD_QUECTEL_BG96.cpp index 48ba8c83fd4..3faa980aabb 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_BG96/ONBOARD_QUECTEL_BG96.cpp +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_BG96/ONBOARD_QUECTEL_BG96.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_BG96/ONBOARD_QUECTEL_BG96.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_BG96/ONBOARD_QUECTEL_BG96.h index e7c774e495c..a9160b082bd 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_BG96/ONBOARD_QUECTEL_BG96.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/TARGET_WIO_BG96/ONBOARD_QUECTEL_BG96.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F439xI/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/TARGET_NUCLEO_F446RE/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/TARGET_NUCLEO_F446RE/system_clock.c index fa0628d7f19..0087f8c4b79 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/TARGET_NUCLEO_F446RE/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/TARGET_NUCLEO_F446RE/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/TARGET_NUCLEO_F446ZE/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/TARGET_NUCLEO_F446ZE/system_clock.c index 3b771a05814..a3298364dad 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/TARGET_NUCLEO_F446ZE/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/TARGET_NUCLEO_F446ZE/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/us_ticker_data.h index 176c61cb481..6a0b954f1d7 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F446xE/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F469xI/TARGET_DISCO_F469NI/system_clock.c b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F469xI/TARGET_DISCO_F469NI/system_clock.c index 7bc5e0ab052..241577064ae 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F469xI/TARGET_DISCO_F469NI/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F469xI/TARGET_DISCO_F469NI/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F469xI/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F469xI/us_ticker_data.h index 2d22f5adaa1..c05fa697eef 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F469xI/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F469xI/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F4/can_device.h b/targets/TARGET_STM/TARGET_STM32F4/can_device.h index ba14e219338..1b098587521 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/can_device.h +++ b/targets/TARGET_STM/TARGET_STM32F4/can_device.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F7/can_device.h b/targets/TARGET_STM/TARGET_STM32F7/can_device.h index 6e0f174feab..006bd780740 100644 --- a/targets/TARGET_STM/TARGET_STM32F7/can_device.h +++ b/targets/TARGET_STM/TARGET_STM32F7/can_device.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32F7/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32F7/us_ticker_data.h index 4a43976dabf..ceae3bae5be 100644 --- a/targets/TARGET_STM/TARGET_STM32F7/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32F7/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32G4/TARGET_STM32G474xx/TARGET_NUCLEO_G474RE/PeripheralNames.h b/targets/TARGET_STM/TARGET_STM32G4/TARGET_STM32G474xx/TARGET_NUCLEO_G474RE/PeripheralNames.h index b407c3ed11c..48358111648 100644 --- a/targets/TARGET_STM/TARGET_STM32G4/TARGET_STM32G474xx/TARGET_NUCLEO_G474RE/PeripheralNames.h +++ b/targets/TARGET_STM/TARGET_STM32G4/TARGET_STM32G474xx/TARGET_NUCLEO_G474RE/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32G4/objects.h b/targets/TARGET_STM/TARGET_STM32G4/objects.h index 00f278c9f0c..5c7f62db295 100644 --- a/targets/TARGET_STM/TARGET_STM32G4/objects.h +++ b/targets/TARGET_STM/TARGET_STM32G4/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32H7/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32H7/us_ticker_data.h index 36619800e1d..14041cc57c1 100644 --- a/targets/TARGET_STM/TARGET_STM32H7/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32H7/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L0/TARGET_NUCLEO_L073RZ/device/system_clock.c b/targets/TARGET_STM/TARGET_STM32L0/TARGET_NUCLEO_L073RZ/device/system_clock.c index 617760c0555..12d1ba53904 100644 --- a/targets/TARGET_STM/TARGET_STM32L0/TARGET_NUCLEO_L073RZ/device/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L0/TARGET_NUCLEO_L073RZ/device/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L0/TARGET_NUCLEO_L073RZ/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L0/TARGET_NUCLEO_L073RZ/device/us_ticker_data.h index 1ae9b883759..5f1cb801370 100644 --- a/targets/TARGET_STM/TARGET_STM32L0/TARGET_NUCLEO_L073RZ/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L0/TARGET_NUCLEO_L073RZ/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L053x8/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L053x8/device/us_ticker_data.h index 1ae9b883759..5f1cb801370 100644 --- a/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L053x8/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L053x8/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L072xZ/TARGET_DISCO_L072CZ_LRWAN1/system_clock.c b/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L072xZ/TARGET_DISCO_L072CZ_LRWAN1/system_clock.c index 557402ee84b..665588730ea 100644 --- a/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L072xZ/TARGET_DISCO_L072CZ_LRWAN1/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L072xZ/TARGET_DISCO_L072CZ_LRWAN1/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L072xZ/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L072xZ/device/us_ticker_data.h index 1ae9b883759..5f1cb801370 100644 --- a/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L072xZ/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L072xZ/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L0x2xZ/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L0x2xZ/device/us_ticker_data.h index 1ae9b883759..5f1cb801370 100644 --- a/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L0x2xZ/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L0/TARGET_STM32L0x2xZ/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L1/TARGET_MOTE_L152RC/device/system_clock.c b/targets/TARGET_STM/TARGET_STM32L1/TARGET_MOTE_L152RC/device/system_clock.c index d14cbc4bc62..9c66425f2be 100644 --- a/targets/TARGET_STM/TARGET_STM32L1/TARGET_MOTE_L152RC/device/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L1/TARGET_MOTE_L152RC/device/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L1/TARGET_MOTE_L152RC/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L1/TARGET_MOTE_L152RC/device/us_ticker_data.h index b32bd97db96..62ee7bcdfd5 100644 --- a/targets/TARGET_STM/TARGET_STM32L1/TARGET_MOTE_L152RC/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L1/TARGET_MOTE_L152RC/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L1/TARGET_NUCLEO_L152RE/device/system_clock.c b/targets/TARGET_STM/TARGET_STM32L1/TARGET_NUCLEO_L152RE/device/system_clock.c index fb85aaccac2..de97e232fec 100644 --- a/targets/TARGET_STM/TARGET_STM32L1/TARGET_NUCLEO_L152RE/device/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L1/TARGET_NUCLEO_L152RE/device/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L1/TARGET_NUCLEO_L152RE/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L1/TARGET_NUCLEO_L152RE/device/us_ticker_data.h index b32bd97db96..62ee7bcdfd5 100644 --- a/targets/TARGET_STM/TARGET_STM32L1/TARGET_NUCLEO_L152RE/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L1/TARGET_NUCLEO_L152RE/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L1/TARGET_XDOT_L151CC/device/system_clock.c b/targets/TARGET_STM/TARGET_STM32L1/TARGET_XDOT_L151CC/device/system_clock.c index 6d1889d50a1..9dc8651d8cd 100644 --- a/targets/TARGET_STM/TARGET_STM32L1/TARGET_XDOT_L151CC/device/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L1/TARGET_XDOT_L151CC/device/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L1/TARGET_XDOT_L151CC/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L1/TARGET_XDOT_L151CC/device/us_ticker_data.h index b32bd97db96..62ee7bcdfd5 100644 --- a/targets/TARGET_STM/TARGET_STM32L1/TARGET_XDOT_L151CC/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L1/TARGET_XDOT_L151CC/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ONBOARD_SARA4_PPP.cpp b/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ONBOARD_SARA4_PPP.cpp index fdf59816492..d4f7f851f3b 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ONBOARD_SARA4_PPP.cpp +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ONBOARD_SARA4_PPP.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ONBOARD_SARA4_PPP.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ONBOARD_SARA4_PPP.h index f9eb408f2fd..7b63276b120 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ONBOARD_SARA4_PPP.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ONBOARD_SARA4_PPP.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/device/us_ticker_data.h index b37325b5b12..57366ffb1b1 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/system_clock.c b/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/system_clock.c index a0d42da302c..b35d48cff6a 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ublox_low_level_api.c b/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ublox_low_level_api.c index e700b4b2685..56ff5ddbc6a 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ublox_low_level_api.c +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/ublox_low_level_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L432xC/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L432xC/device/us_ticker_data.h index cf4de8b5bb8..773ae5d6bc6 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L432xC/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L432xC/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L433xC/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L433xC/device/us_ticker_data.h index cf4de8b5bb8..773ae5d6bc6 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L433xC/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L433xC/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L443xC/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L443xC/device/us_ticker_data.h index cf4de8b5bb8..773ae5d6bc6 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L443xC/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L443xC/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L452xE/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L452xE/device/us_ticker_data.h index cf4de8b5bb8..773ae5d6bc6 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L452xE/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L452xE/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L475xG/TARGET_DISCO_L475VG_IOT01A/system_clock.c b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L475xG/TARGET_DISCO_L475VG_IOT01A/system_clock.c index bcb449c1dbe..64ac661654e 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L475xG/TARGET_DISCO_L475VG_IOT01A/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L475xG/TARGET_DISCO_L475VG_IOT01A/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L475xG/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L475xG/device/us_ticker_data.h index 93a3a31c0f0..710c33242b2 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L475xG/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L475xG/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/TARGET_DISCO_L476VG/system_clock.c b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/TARGET_DISCO_L476VG/system_clock.c index bcb449c1dbe..64ac661654e 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/TARGET_DISCO_L476VG/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/TARGET_DISCO_L476VG/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/TARGET_NUCLEO_L476RG/system_clock.c b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/TARGET_NUCLEO_L476RG/system_clock.c index bcb449c1dbe..64ac661654e 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/TARGET_NUCLEO_L476RG/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/TARGET_NUCLEO_L476RG/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/device/us_ticker_data.h index 93a3a31c0f0..710c33242b2 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/ONBOARD_QUECTEL_BC95.cpp b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/ONBOARD_QUECTEL_BC95.cpp index 243d66637ca..870d890eaa6 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/ONBOARD_QUECTEL_BC95.cpp +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/ONBOARD_QUECTEL_BC95.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/ONBOARD_QUECTEL_BC95.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/ONBOARD_QUECTEL_BC95.h index 9d91504727d..d2cb871db5a 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/ONBOARD_QUECTEL_BC95.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/ONBOARD_QUECTEL_BC95.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/system_clock.c b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/system_clock.c index 269c62cf00c..8ce0444ea31 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_ADV_WISE_1570/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_NUCLEO_L486RG/system_clock.c b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_NUCLEO_L486RG/system_clock.c index bcb449c1dbe..64ac661654e 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_NUCLEO_L486RG/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/TARGET_NUCLEO_L486RG/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/device/us_ticker_data.h index 93a3a31c0f0..710c33242b2 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L486xG/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/TARGET_DISCO_L496AG/system_clock.c b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/TARGET_DISCO_L496AG/system_clock.c index 3dd8ece2807..7a3e731fdde 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/TARGET_DISCO_L496AG/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/TARGET_DISCO_L496AG/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/TARGET_NUCLEO_L496ZG/system_clock.c b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/TARGET_NUCLEO_L496ZG/system_clock.c index 3dd8ece2807..7a3e731fdde 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/TARGET_NUCLEO_L496ZG/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/TARGET_NUCLEO_L496ZG/system_clock.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited +* SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/device/us_ticker_data.h index 833e724d812..8facf2388f3 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R5xI/device/objects.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R5xI/device/objects.h index 8eefb96ea17..73fa8c74052 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R5xI/device/objects.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R5xI/device/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R5xI/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R5xI/device/us_ticker_data.h index cb7f2bb9a9d..05da9db1748 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R5xI/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R5xI/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R9xI/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R9xI/device/us_ticker_data.h index cb7f2bb9a9d..05da9db1748 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R9xI/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L4R9xI/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/TARGET_STM32L4/can_device.h b/targets/TARGET_STM/TARGET_STM32L4/can_device.h index 35932a68b5d..5da17f334fe 100644 --- a/targets/TARGET_STM/TARGET_STM32L4/can_device.h +++ b/targets/TARGET_STM/TARGET_STM32L4/can_device.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/USBPhyHw.h b/targets/TARGET_STM/USBPhyHw.h index a7eca4adb83..1803464edc9 100644 --- a/targets/TARGET_STM/USBPhyHw.h +++ b/targets/TARGET_STM/USBPhyHw.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018-2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * Copyright (c) 2018-2019 STMicroelectronics * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/targets/TARGET_STM/USBPhy_STM32.cpp b/targets/TARGET_STM/USBPhy_STM32.cpp index 7a1dc23c54e..382d9d438cb 100644 --- a/targets/TARGET_STM/USBPhy_STM32.cpp +++ b/targets/TARGET_STM/USBPhy_STM32.cpp @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2018-2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * Copyright (c) 2018-2019 STMicroelectronics * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/targets/TARGET_STM/can_api.c b/targets/TARGET_STM/can_api.c index b264941b811..d13ad1c49fa 100644 --- a/targets/TARGET_STM/can_api.c +++ b/targets/TARGET_STM/can_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/hal_tick_overrides.c b/targets/TARGET_STM/hal_tick_overrides.c index 867450b0bea..b2d70acb7ec 100644 --- a/targets/TARGET_STM/hal_tick_overrides.c +++ b/targets/TARGET_STM/hal_tick_overrides.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/mbed_rtx.h b/targets/TARGET_STM/mbed_rtx.h index 1e46c822478..bb666d97deb 100644 --- a/targets/TARGET_STM/mbed_rtx.h +++ b/targets/TARGET_STM/mbed_rtx.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/nvic_addr.h b/targets/TARGET_STM/nvic_addr.h index adb75f00282..2112f3ffd80 100644 --- a/targets/TARGET_STM/nvic_addr.h +++ b/targets/TARGET_STM/nvic_addr.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/reset_reason.c b/targets/TARGET_STM/reset_reason.c index f962b8746d1..361e4d1744a 100644 --- a/targets/TARGET_STM/reset_reason.c +++ b/targets/TARGET_STM/reset_reason.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/us_ticker.c b/targets/TARGET_STM/us_ticker.c index 71ee109e63b..a7b1a0fa345 100644 --- a/targets/TARGET_STM/us_ticker.c +++ b/targets/TARGET_STM/us_ticker.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_STM/watchdog_api.c b/targets/TARGET_STM/watchdog_api.c index f1d6ebe964f..919ac884261 100644 --- a/targets/TARGET_STM/watchdog_api.c +++ b/targets/TARGET_STM/watchdog_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Silicon_Labs/TARGET_EFM32/itm_api.c b/targets/TARGET_Silicon_Labs/TARGET_EFM32/itm_api.c index 80b79e6c0bd..6b2cba06fa7 100644 --- a/targets/TARGET_Silicon_Labs/TARGET_EFM32/itm_api.c +++ b/targets/TARGET_Silicon_Labs/TARGET_EFM32/itm_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_Silicon_Labs/mbed_rtx.h b/targets/TARGET_Silicon_Labs/mbed_rtx.h index 3d291b522ed..0b37365845b 100644 --- a/targets/TARGET_Silicon_Labs/mbed_rtx.h +++ b/targets/TARGET_Silicon_Labs/mbed_rtx.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2016 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_TOSHIBA/TARGET_TMPM46B/pwmout_api.c b/targets/TARGET_TOSHIBA/TARGET_TMPM46B/pwmout_api.c index 035e8eecf25..f2e1db6cef3 100644 --- a/targets/TARGET_TOSHIBA/TARGET_TMPM46B/pwmout_api.c +++ b/targets/TARGET_TOSHIBA/TARGET_TMPM46B/pwmout_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_WICED/wiced_interface/WicedInterface.h b/targets/TARGET_WICED/wiced_interface/WicedInterface.h index c4826f366a3..b027e456542 100644 --- a/targets/TARGET_WICED/wiced_interface/WicedInterface.h +++ b/targets/TARGET_WICED/wiced_interface/WicedInterface.h @@ -1,5 +1,6 @@ /* Wiced implementation of NetworkInterfaceAPI * Copyright (c) 2017 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/targets/TARGET_WICED/wiced_interface/wiced_emac.h b/targets/TARGET_WICED/wiced_interface/wiced_emac.h index 25ac61ee5ca..5a6c21d5fcc 100644 --- a/targets/TARGET_WICED/wiced_interface/wiced_emac.h +++ b/targets/TARGET_WICED/wiced_interface/wiced_emac.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2018 ARM Limited + * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.