Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of nRF51822 by
bootloader/softdevice_nrf51822_licence_agreement.txt@510:7dded1f7473c, 2015-12-02 (annotated)
- Committer:
- rgrover1
- Date:
- Wed Dec 02 12:35:26 2015 +0000
- Revision:
- 510:7dded1f7473c
- Parent:
- 473:48645f59c264
Synchronized with git rev a5a46f2f
Author: Rohit Grover
Release 2.0.7
=============
* Fix a bug in the assembly sequence that starts the Nordic bootloader. With
GCC, a MOV instruction was getting converted into an ADDS, which came with
an unwanted side-effect of updating the XPSR. We relocated the offending MOV
instruction such that it would not affect a conditional branch statement.
This would show only with GCC, and when jumping to the bootloader while in
handler mode.
* Fix hardfaults generated from the handling of Radio Notification events.
Radio notification events are interrupts generated at very high priority.
They have the potential to pre-empt other interrupt handling, causing race
conditions when interrupted handlers were involved in calling into BLE_API.
Radio-notification events should defer their callback handling to low-
priority handlers through the use of Tickers or Timeouts.
* Introduce watchdog header file from Nordic SDK 8.1.
* Update license headers to reflect the latest licenses from Nordic.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rgrover1 | 473:48645f59c264 | 1 | /* |
rgrover1 | 473:48645f59c264 | 2 | * S110/S120/S130 License Agreement |
rgrover1 | 473:48645f59c264 | 3 | * |
rgrover1 | 473:48645f59c264 | 4 | * Copyright (c) 2015, Nordic Semiconductor ASA, All rights reserved. |
rgrover1 | 473:48645f59c264 | 5 | * |
rgrover1 | 473:48645f59c264 | 6 | * Redistribution. Redistribution and use in binary form, without modification, |
rgrover1 | 473:48645f59c264 | 7 | * are permitted provided that the following conditions are met: |
rgrover1 | 473:48645f59c264 | 8 | * |
rgrover1 | 473:48645f59c264 | 9 | * • Redistributions must reproduce the above copyright notice and the following |
rgrover1 | 473:48645f59c264 | 10 | * disclaimer in the documentation and/or other materials provided with the |
rgrover1 | 473:48645f59c264 | 11 | * distribution. |
rgrover1 | 473:48645f59c264 | 12 | * • Neither the name of the copyright holder nor the names of its contributors |
rgrover1 | 473:48645f59c264 | 13 | * may be used to endorse or promote products derived from this software |
rgrover1 | 473:48645f59c264 | 14 | * without specific prior written permission. |
rgrover1 | 473:48645f59c264 | 15 | * • No reverse engineering, decompilation, or disassembly of this software is |
rgrover1 | 473:48645f59c264 | 16 | * permitted. |
rgrover1 | 473:48645f59c264 | 17 | * |
rgrover1 | 473:48645f59c264 | 18 | * DISCLAIMER. |
rgrover1 | 473:48645f59c264 | 19 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
rgrover1 | 473:48645f59c264 | 20 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
rgrover1 | 473:48645f59c264 | 21 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
rgrover1 | 473:48645f59c264 | 22 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR |
rgrover1 | 473:48645f59c264 | 23 | * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
rgrover1 | 473:48645f59c264 | 24 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
rgrover1 | 473:48645f59c264 | 25 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
rgrover1 | 473:48645f59c264 | 26 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
rgrover1 | 473:48645f59c264 | 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
rgrover1 | 473:48645f59c264 | 28 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
rgrover1 | 473:48645f59c264 | 29 | * |
rgrover1 | 473:48645f59c264 | 30 | * / |