From 58308c4a892bb5db34cb5dd280c4c98456b95434 Mon Sep 17 00:00:00 2001 From: Robert Fisk Date: Sun, 4 Oct 2015 02:02:59 +1300 Subject: [PATCH] Added Mozilla Public License information to file headers. Mozilla Public License v2.0 is compatible with the various licenses used by ST and ARM. --- .../Inc/stm32f4xx_hal_spi.h | 4 +- .../STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c | 4 +- .../Src/stm32f4xx_hal_hcd.c | 4 +- .../Src/stm32f4xx_hal_rcc.c | 4 +- .../Src/stm32f4xx_hal_spi.c | 2 + .../Src/stm32f4xx_ll_usb.c | 4 +- Downstream/Inc/board_config.h | 5 + Downstream/Inc/downstream_interface_def.h | 4 + Downstream/Inc/downstream_msc.h | 4 + Downstream/Inc/downstream_spi.h | 4 + Downstream/Inc/downstream_statemachine.h | 4 + Downstream/Inc/interrupts.h | 2 + Downstream/Inc/led.h | 4 + Downstream/Inc/usb_host.h | 4 +- .../Class/MSC/Inc/usbh_msc.h | 5 +- .../Class/MSC/Inc/usbh_msc_bot.h | 5 +- .../Class/MSC/Inc/usbh_msc_scsi.h | 5 +- .../Class/MSC/Src/usbh_msc.c | 3 + .../Class/MSC/Src/usbh_msc_bot.c | 5 +- .../Class/MSC/Src/usbh_msc_scsi.c | 5 +- .../Core/Inc/usbh_ctlreq.h | 5 +- .../Core/Inc/usbh_def.h | 3 + Downstream/Src/downstream_msc.c | 4 + Downstream/Src/downstream_spi.c | 4 + Downstream/Src/downstream_statemachine.c | 4 + Downstream/Src/hal_msp.c | 3 + Downstream/Src/interrupts.c | 3 + Downstream/Src/led.c | 4 + Downstream/Src/main.c | 3 + Downstream/Src/usb_host.c | 4 +- Downstream/Src/usbh_config.c | 5 +- LICENSE | 76 + Upstream/.cproject | 2 +- Upstream/.settings/language.settings.xml | 2 +- Upstream/Debug/Upstream.elf | Bin 747661 -> 791623 bytes Upstream/Debug/Upstream.hex | 3304 +++++++---------- Upstream/Debug/Upstream.map | 2023 +++++----- .../Src/stm32f4xx_hal_spi.c | 2 + Upstream/Inc/board_config.h | 4 + Upstream/Inc/interrupts.h | 2 + Upstream/Inc/led.h | 4 + Upstream/Inc/upstream_interface_def.h | 4 + Upstream/Inc/upstream_msc.h | 4 + Upstream/Inc/upstream_spi.h | 4 + Upstream/Inc/upstream_statemachine.h | 4 + .../Class/MSC/Inc/usbd_msc.h | 4 +- .../Class/MSC/Src/usbd_msc.c | 4 +- .../Class/MSC/Src/usbd_msc_bot.c | 4 +- .../Class/MSC/Src/usbd_msc_scsi.c | 4 +- Upstream/Src/hal_msp.c | 3 + Upstream/Src/interrupts.c | 3 + Upstream/Src/led.c | 4 + Upstream/Src/main.c | 2 + Upstream/Src/upstream_msc.c | 4 + Upstream/Src/upstream_msc_mock.c | 4 + Upstream/Src/upstream_spi.c | 4 + Upstream/Src/upstream_statemachine.c | 4 + Upstream/Src/usb_device.c | 4 +- Upstream/Src/usbd_config.c | 5 +- Upstream/Src/usbd_descriptors.c | 4 +- 60 files changed, 2534 insertions(+), 3081 deletions(-) create mode 100644 LICENSE diff --git a/Downstream/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h b/Downstream/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h index 7565b65..dde3231 100644 --- a/Downstream/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h +++ b/Downstream/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h @@ -33,7 +33,9 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** - */ + * + * Modifications by Robert Fisk + */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32F4xx_HAL_SPI_H diff --git a/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c b/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c index 8e1c314..282e41b 100644 --- a/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c +++ b/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c @@ -48,7 +48,9 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** - */ + * + * Modifications by Robert Fisk + */ /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_hal.h" diff --git a/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c b/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c index 0ff780e..9b8b677 100644 --- a/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c +++ b/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c @@ -69,7 +69,9 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** - */ + * + * Modifications by Robert Fisk + */ /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_hal.h" diff --git a/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c b/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c index 803979c..0b9ca68 100644 --- a/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c +++ b/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c @@ -83,7 +83,9 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** - */ + * + * Modifications by Robert Fisk + */ /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_hal.h" diff --git a/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c b/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c index 92bfc94..e72009c 100644 --- a/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c +++ b/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c @@ -84,6 +84,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** + * + * Modifications by Robert Fisk */ /* Includes ------------------------------------------------------------------*/ diff --git a/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c b/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c index 28fedf4..971edfa 100644 --- a/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c +++ b/Downstream/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c @@ -53,7 +53,9 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** - */ + * + * Modifications by Robert Fisk + */ /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_hal.h" diff --git a/Downstream/Inc/board_config.h b/Downstream/Inc/board_config.h index 62762f9..f34e573 100644 --- a/Downstream/Inc/board_config.h +++ b/Downstream/Inc/board_config.h @@ -3,8 +3,13 @@ * * Created on: 25/03/2015 * Author: Robert Fisk + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ + #ifndef INC_BOARD_CONFIG_H_ #define INC_BOARD_CONFIG_H_ diff --git a/Downstream/Inc/downstream_interface_def.h b/Downstream/Inc/downstream_interface_def.h index e37d78d..f063d75 100644 --- a/Downstream/Inc/downstream_interface_def.h +++ b/Downstream/Inc/downstream_interface_def.h @@ -3,6 +3,10 @@ * * Created on: 24/07/2015 * Author: Robert Fisk + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #ifndef INC_DOWNSTREAM_INTERFACE_DEF_H_ diff --git a/Downstream/Inc/downstream_msc.h b/Downstream/Inc/downstream_msc.h index dffe63e..30237b8 100644 --- a/Downstream/Inc/downstream_msc.h +++ b/Downstream/Inc/downstream_msc.h @@ -3,6 +3,10 @@ * * Created on: 8/08/2015 * Author: Robert Fisk + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #ifndef INC_DOWNSTREAM_MSC_H_ diff --git a/Downstream/Inc/downstream_spi.h b/Downstream/Inc/downstream_spi.h index 309047e..8a2b028 100644 --- a/Downstream/Inc/downstream_spi.h +++ b/Downstream/Inc/downstream_spi.h @@ -3,6 +3,10 @@ * * Created on: 24/07/2015 * Author: Robert Fisk + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #ifndef INC_DOWNSTREAM_SPI_H_ diff --git a/Downstream/Inc/downstream_statemachine.h b/Downstream/Inc/downstream_statemachine.h index 84384b8..785f055 100644 --- a/Downstream/Inc/downstream_statemachine.h +++ b/Downstream/Inc/downstream_statemachine.h @@ -3,6 +3,10 @@ * * Created on: 2/08/2015 * Author: Robert Fisk + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #ifndef INC_DOWNSTREAM_STATEMACHINE_H_ diff --git a/Downstream/Inc/interrupts.h b/Downstream/Inc/interrupts.h index 6771194..2ae4ba4 100644 --- a/Downstream/Inc/interrupts.h +++ b/Downstream/Inc/interrupts.h @@ -29,6 +29,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** + * + * Modifications by Robert Fisk */ /* Define to prevent recursive inclusion -------------------------------------*/ diff --git a/Downstream/Inc/led.h b/Downstream/Inc/led.h index a944cc9..ec9e71d 100644 --- a/Downstream/Inc/led.h +++ b/Downstream/Inc/led.h @@ -3,6 +3,10 @@ * * Created on: 19/08/2015 * Author: Robert Fisk + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #ifndef INC_LED_H_ diff --git a/Downstream/Inc/usb_host.h b/Downstream/Inc/usb_host.h index 2b09dc8..a59c43b 100644 --- a/Downstream/Inc/usb_host.h +++ b/Downstream/Inc/usb_host.h @@ -29,7 +29,9 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** -*/ + * + * Modifications by Robert Fisk + */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __usb_host_H diff --git a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc.h b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc.h index ae07676..8febd79 100644 --- a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc.h +++ b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc.h @@ -23,7 +23,10 @@ * limitations under the License. * ****************************************************************************** - */ + * + * Modifications by Robert Fisk + */ + /* Define to prevent recursive ----------------------------------------------*/ #ifndef __USBH_MSC_H diff --git a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc_bot.h b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc_bot.h index f557a2d..ae34ef5 100644 --- a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc_bot.h +++ b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc_bot.h @@ -23,7 +23,10 @@ * limitations under the License. * ****************************************************************************** - */ + * + * Modifications by Robert Fisk + */ + /* Define to prevent recursive ----------------------------------------------*/ #ifndef __USBH_MSC_BOT_H diff --git a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc_scsi.h b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc_scsi.h index e57028e..2882eaf 100644 --- a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc_scsi.h +++ b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Inc/usbh_msc_scsi.h @@ -23,7 +23,10 @@ * limitations under the License. * ****************************************************************************** - */ + * + * Modifications by Robert Fisk + */ + /* Define to prevent recursive ----------------------------------------------*/ #ifndef __USBH_MSC_SCSI_H diff --git a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc.c b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc.c index d837ccb..9056414 100644 --- a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc.c +++ b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc.c @@ -35,8 +35,11 @@ * limitations under the License. * ****************************************************************************** + * + * Modifications by Robert Fisk */ + /* Includes ------------------------------------------------------------------*/ #include "usbh_msc.h" diff --git a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc_bot.c b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc_bot.c index 13b667b..35d72cf 100644 --- a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc_bot.c +++ b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc_bot.c @@ -23,7 +23,10 @@ * limitations under the License. * ****************************************************************************** - */ + * + * Modifications by Robert Fisk + */ + /* Includes ------------------------------------------------------------------*/ #include "usbh_msc_bot.h" diff --git a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc_scsi.c b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc_scsi.c index db0c9cc..7c07308 100644 --- a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc_scsi.c +++ b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Class/MSC/Src/usbh_msc_scsi.c @@ -23,7 +23,10 @@ * limitations under the License. * ****************************************************************************** - */ + * + * Modifications by Robert Fisk + */ + /* Includes ------------------------------------------------------------------*/ #include "usbh_msc.h" diff --git a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ctlreq.h b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ctlreq.h index 9437ea0..8b2f7c2 100644 --- a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ctlreq.h +++ b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ctlreq.h @@ -23,7 +23,10 @@ * limitations under the License. * ****************************************************************************** - */ + * + * Modifications by Robert Fisk + */ + /* Define to prevent recursive ----------------------------------------------*/ #ifndef __USBH_CTLREQ_H diff --git a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_def.h b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_def.h index 4dfaa59..48dd3f4 100644 --- a/Downstream/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_def.h +++ b/Downstream/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_def.h @@ -23,7 +23,10 @@ * limitations under the License. * ****************************************************************************** + * + * Modifications by Robert Fisk */ + /* Define to prevent recursive ----------------------------------------------*/ #ifndef USBH_DEF_H diff --git a/Downstream/Src/downstream_msc.c b/Downstream/Src/downstream_msc.c index c982a91..dd20b81 100644 --- a/Downstream/Src/downstream_msc.c +++ b/Downstream/Src/downstream_msc.c @@ -3,6 +3,10 @@ * * Created on: 8/08/2015 * Author: Robert Fisk + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ diff --git a/Downstream/Src/downstream_spi.c b/Downstream/Src/downstream_spi.c index 51e4d28..48adc16 100644 --- a/Downstream/Src/downstream_spi.c +++ b/Downstream/Src/downstream_spi.c @@ -3,6 +3,10 @@ * * Created on: 24/07/2015 * Author: Robert Fisk + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ diff --git a/Downstream/Src/downstream_statemachine.c b/Downstream/Src/downstream_statemachine.c index 0fe3070..03f0b79 100644 --- a/Downstream/Src/downstream_statemachine.c +++ b/Downstream/Src/downstream_statemachine.c @@ -3,6 +3,10 @@ * * Created on: 2/08/2015 * Author: Robert Fisk + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ diff --git a/Downstream/Src/hal_msp.c b/Downstream/Src/hal_msp.c index 5d16165..ff1683e 100644 --- a/Downstream/Src/hal_msp.c +++ b/Downstream/Src/hal_msp.c @@ -30,7 +30,10 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** + * + * Modifications by Robert Fisk */ + /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_hal.h" #include "interrupts.h" diff --git a/Downstream/Src/interrupts.c b/Downstream/Src/interrupts.c index 6de5e35..de7a30d 100644 --- a/Downstream/Src/interrupts.c +++ b/Downstream/Src/interrupts.c @@ -29,7 +29,10 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** + * + * Modifications by Robert Fisk */ + /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_hal.h" #include "stm32f4xx.h" diff --git a/Downstream/Src/led.c b/Downstream/Src/led.c index 3f27acf..43aed75 100644 --- a/Downstream/Src/led.c +++ b/Downstream/Src/led.c @@ -3,6 +3,10 @@ * * Created on: 19/08/2015 * Author: Robert Fisk + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ diff --git a/Downstream/Src/main.c b/Downstream/Src/main.c index b97587e..cedded5 100644 --- a/Downstream/Src/main.c +++ b/Downstream/Src/main.c @@ -29,7 +29,10 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** + * + * Modifications by Robert Fisk */ + /* Includes ------------------------------------------------------------------*/ #include "stm32f4xx_hal.h" #include "usb_host.h" diff --git a/Downstream/Src/usb_host.c b/Downstream/Src/usb_host.c index 6e5573f..ba4826c 100644 --- a/Downstream/Src/usb_host.c +++ b/Downstream/Src/usb_host.c @@ -29,7 +29,9 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** -*/ + * + * Modifications by Robert Fisk + */ /* Includes ------------------------------------------------------------------*/ diff --git a/Downstream/Src/usbh_config.c b/Downstream/Src/usbh_config.c index e1c2da0..cf23d88 100644 --- a/Downstream/Src/usbh_config.c +++ b/Downstream/Src/usbh_config.c @@ -29,7 +29,10 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** -*/ + * + * Modifications by Robert Fisk + */ + /* Includes ------------------------------------------------------------------*/ #include "usbh_core.h" #include "interrupts.h" diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a96dfac --- /dev/null +++ b/LICENSE @@ -0,0 +1,76 @@ + Portions of this Source Code Form subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at https://mozilla.org/MPL/2.0/. + + + +Portions COPYRIGHT(c) 2015 STMicroelectronics + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + 3. Neither the name of STMicroelectronics nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +Portions COPYRIGHT 2015 STMicroelectronics + +Licensed under MCD-ST Liberty SW License Agreement V2, (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.st.com/software_license_agreement_liberty_v2 + +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. + + + +Portions Copyright (C) 2010-2014 ARM Limited. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + - Neither the name of ARM LIMITED nor the names of its contributors + may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + diff --git a/Upstream/.cproject b/Upstream/.cproject index 09f2839..0983f0b 100755 --- a/Upstream/.cproject +++ b/Upstream/.cproject @@ -15,7 +15,7 @@ -