From 6caa4d487f7dd56ffaa1b0b5e40ea93e76893652 Mon Sep 17 00:00:00 2001 From: Laurent Meunier Date: Mon, 11 Mar 2019 17:32:29 +0100 Subject: [PATCH] STM32WB: Add SPDX identifier to new files also update the copyright year when needed --- .../targets/TARGET_STM/stm32wb_HCIDriver.cpp | 3 +- .../TARGET_NUCLEO_WB55RG/PeripheralNames.h | 3 +- .../TARGET_NUCLEO_WB55RG/PeripheralPins.c | 3 +- .../TARGET_NUCLEO_WB55RG/PinNames.h | 3 +- .../TARGET_NUCLEO_WB55RG/system_clock.c | 29 ++++++++++--------- .../TOOLCHAIN_ARM_MICRO/stm32wb55xx.sct | 3 +- .../device/TOOLCHAIN_ARM_STD/stm32wb55xx.sct | 3 +- .../device/TOOLCHAIN_IAR/stm32wb55xx.icf | 18 ++++++++++++ .../TARGET_STM32WB55xG/device/cmsis.h | 3 +- .../TARGET_STM32WB55xG/device/cmsis_nvic.h | 3 +- .../TARGET_STM32WB55xG/device/flash_data.h | 3 +- .../TARGET_STM32WB55xG/device/objects.h | 3 +- .../device/us_ticker_data.h | 3 +- .../TARGET_STM32WB/analogin_device.c | 1 + .../TARGET_STM32WB/common_objects.h | 1 + targets/TARGET_STM/TARGET_STM32WB/device.h | 1 + targets/TARGET_STM/TARGET_STM32WB/flash_api.c | 3 +- .../TARGET_STM32WB/gpio_irq_device.c | 1 + .../TARGET_STM32WB/gpio_irq_device.h | 1 + .../TARGET_STM/TARGET_STM32WB/i2c_device.h | 1 + .../TARGET_STM/TARGET_STM32WB/pin_device.h | 1 + .../TARGET_STM/TARGET_STM32WB/pwmout_device.c | 1 + .../TARGET_STM/TARGET_STM32WB/pwmout_device.h | 1 + .../TARGET_STM/TARGET_STM32WB/serial_device.c | 1 + targets/TARGET_STM/TARGET_STM32WB/spi_api.c | 1 + .../TARGET_STM/TARGET_STM32WB/spi_device.h | 1 + targets/TARGET_STM/TARGET_STM32WB/wb_sleep.c | 1 + 27 files changed, 70 insertions(+), 26 deletions(-) diff --git a/features/FEATURE_BLE/targets/TARGET_STM/stm32wb_HCIDriver.cpp b/features/FEATURE_BLE/targets/TARGET_STM/stm32wb_HCIDriver.cpp index 53fdb9f755..324a785d81 100644 --- a/features/FEATURE_BLE/targets/TARGET_STM/stm32wb_HCIDriver.cpp +++ b/features/FEATURE_BLE/targets/TARGET_STM/stm32wb_HCIDriver.cpp @@ -1,5 +1,6 @@ /* - * Copyright (c) 2018 ARM Limited + * 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_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PeripheralNames.h b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PeripheralNames.h index 876069bc49..1f44603909 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PeripheralNames.h +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PeripheralNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library - * Copyright (c) 2006-2013 ARM Limited + * 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_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PeripheralPins.c b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PeripheralPins.c index cfc7d28198..0625ef6abb 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PeripheralPins.c +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PeripheralPins.c @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* - * Copyright (c) 2018, STMicroelectronics + * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PinNames.h b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PinNames.h index c9990b2979..deac20bfb4 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PinNames.h +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/PinNames.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library - * Copyright (c) 2006-2013 ARM Limited + * 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_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/system_clock.c b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/system_clock.c index 064d8842fc..9b9cae3fd9 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/system_clock.c +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/TARGET_NUCLEO_WB55RG/system_clock.c @@ -1,18 +1,19 @@ /* mbed Microcontroller Library -* Copyright (c) 2006-2017 ARM Limited -* -* 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. -*/ + * 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. + * 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. + */ /** * This file configures the system clock as follows: diff --git a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_ARM_MICRO/stm32wb55xx.sct b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_ARM_MICRO/stm32wb55xx.sct index f624b9ce4b..096f8c7118 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_ARM_MICRO/stm32wb55xx.sct +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_ARM_MICRO/stm32wb55xx.sct @@ -1,7 +1,8 @@ #! armcc -E ; Scatter-Loading Description File ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; Copyright (c) 2015, STMicroelectronics +; Copyright (c) 2019, STMicroelectronics +; SPDX-License-Identifier: Apache-2.0 ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_ARM_STD/stm32wb55xx.sct b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_ARM_STD/stm32wb55xx.sct index 9c44c5801f..2b16908ad4 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_ARM_STD/stm32wb55xx.sct +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_ARM_STD/stm32wb55xx.sct @@ -1,7 +1,8 @@ #! armcc -E ; Scatter-Loading Description File ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; Copyright (c) 2015, STMicroelectronics +; Copyright (c) 2019, STMicroelectronics +; SPDX-License-Identifier: Apache-2.0 ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_IAR/stm32wb55xx.icf b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_IAR/stm32wb55xx.icf index d2b7fbed93..bdbb46e9ad 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_IAR/stm32wb55xx.icf +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/TOOLCHAIN_IAR/stm32wb55xx.icf @@ -1,3 +1,21 @@ +/* + * Copyright (c) 2019, STMicroelectronics + * + * SPDX-License-Identifier: Apache-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. + */ + if (!isdefinedsymbol(MBED_APP_START)) { define symbol MBED_APP_START = 0x08000000; } if (!isdefinedsymbol(MBED_APP_SIZE)) { define symbol MBED_APP_SIZE = 0x80000; } diff --git a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/cmsis.h b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/cmsis.h index b32f9ece90..19a908b385 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/cmsis.h +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/cmsis.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library - * Copyright (c) 2006-2013 ARM Limited + * 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_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/cmsis_nvic.h b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/cmsis_nvic.h index 7c48eb11ab..dcaa22ba12 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/cmsis_nvic.h +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/cmsis_nvic.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library - * Copyright (c) 2006-2013 ARM Limited + * 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_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/flash_data.h b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/flash_data.h index 968812d5b3..ed3d9059ec 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/flash_data.h +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/flash_data.h @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* - * Copyright (c) 2016, STMicroelectronics + * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/objects.h b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/objects.h index a31998d7b4..aadaa1f051 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/objects.h +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/objects.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library - * Copyright (c) 2006-2013 ARM Limited + * 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_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/us_ticker_data.h b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/us_ticker_data.h index 15b4e09c29..9ee846abb5 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/us_ticker_data.h +++ b/targets/TARGET_STM/TARGET_STM32WB/TARGET_STM32WB55xG/device/us_ticker_data.h @@ -1,5 +1,6 @@ /* mbed Microcontroller Library - * Copyright (c) 2006-2018 ARM Limited + * 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_STM/TARGET_STM32WB/analogin_device.c b/targets/TARGET_STM/TARGET_STM32WB/analogin_device.c index e22dab500f..ac63be5012 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/analogin_device.c +++ b/targets/TARGET_STM/TARGET_STM32WB/analogin_device.c @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/common_objects.h b/targets/TARGET_STM/TARGET_STM32WB/common_objects.h index e59cdadc1c..2a74d3ae48 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/common_objects.h +++ b/targets/TARGET_STM/TARGET_STM32WB/common_objects.h @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/device.h b/targets/TARGET_STM/TARGET_STM32WB/device.h index d0c2a2ab4b..7141f83448 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/device.h +++ b/targets/TARGET_STM/TARGET_STM32WB/device.h @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/flash_api.c b/targets/TARGET_STM/TARGET_STM32WB/flash_api.c index a2788df9dc..3072b9b74a 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/flash_api.c +++ b/targets/TARGET_STM/TARGET_STM32WB/flash_api.c @@ -1,5 +1,6 @@ /* mbed Microcontroller Library - * Copyright (c) 2006-2013 ARM Limited + * 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_STM/TARGET_STM32WB/gpio_irq_device.c b/targets/TARGET_STM/TARGET_STM32WB/gpio_irq_device.c index b3c74ce9b7..5d3278ce80 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/gpio_irq_device.c +++ b/targets/TARGET_STM/TARGET_STM32WB/gpio_irq_device.c @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/gpio_irq_device.h b/targets/TARGET_STM/TARGET_STM32WB/gpio_irq_device.h index dc76151f10..791dfa4ecb 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/gpio_irq_device.h +++ b/targets/TARGET_STM/TARGET_STM32WB/gpio_irq_device.h @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/i2c_device.h b/targets/TARGET_STM/TARGET_STM32WB/i2c_device.h index d9548f815b..05eab04b4c 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/i2c_device.h +++ b/targets/TARGET_STM/TARGET_STM32WB/i2c_device.h @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/pin_device.h b/targets/TARGET_STM/TARGET_STM32WB/pin_device.h index e4b1903ce9..82f821fd1c 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/pin_device.h +++ b/targets/TARGET_STM/TARGET_STM32WB/pin_device.h @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/pwmout_device.c b/targets/TARGET_STM/TARGET_STM32WB/pwmout_device.c index 30c4f5011c..1701b539a4 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/pwmout_device.c +++ b/targets/TARGET_STM/TARGET_STM32WB/pwmout_device.c @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/pwmout_device.h b/targets/TARGET_STM/TARGET_STM32WB/pwmout_device.h index a8ea9226eb..bf1775d344 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/pwmout_device.h +++ b/targets/TARGET_STM/TARGET_STM32WB/pwmout_device.h @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/serial_device.c b/targets/TARGET_STM/TARGET_STM32WB/serial_device.c index 0ddab4e30a..03283498cb 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/serial_device.c +++ b/targets/TARGET_STM/TARGET_STM32WB/serial_device.c @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/spi_api.c b/targets/TARGET_STM/TARGET_STM32WB/spi_api.c index 1532bd5a99..cdfee382ba 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/spi_api.c +++ b/targets/TARGET_STM/TARGET_STM32WB/spi_api.c @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/spi_device.h b/targets/TARGET_STM/TARGET_STM32WB/spi_device.h index 02bb34848e..f2f72571ab 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/spi_device.h +++ b/targets/TARGET_STM/TARGET_STM32WB/spi_device.h @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/targets/TARGET_STM/TARGET_STM32WB/wb_sleep.c b/targets/TARGET_STM/TARGET_STM32WB/wb_sleep.c index 70dfc9e799..34dd5f0d0e 100644 --- a/targets/TARGET_STM/TARGET_STM32WB/wb_sleep.c +++ b/targets/TARGET_STM/TARGET_STM32WB/wb_sleep.c @@ -1,6 +1,7 @@ /* mbed Microcontroller Library ******************************************************************************* * Copyright (c) 2019, STMicroelectronics + * SPDX-License-Identifier: Apache-2.0 * All rights reserved. * * Redistribution and use in source and binary forms, with or without