Microbit as a BLE gamepad
Fork of nrf51-sdk by
source/nordic_sdk/components/device/nrf.h@9:d3bc499d113d, 2017-01-30 (annotated)
- Committer:
- rengro01
- Date:
- Mon Jan 30 08:23:53 2017 +0000
- Revision:
- 9:d3bc499d113d
- Parent:
- 0:bc2961fa1ef0
Microbit as a BLE gamepad
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Jonathan Austin |
0:bc2961fa1ef0 | 1 | /* |
Jonathan Austin |
0:bc2961fa1ef0 | 2 | * Copyright (c) Nordic Semiconductor ASA |
Jonathan Austin |
0:bc2961fa1ef0 | 3 | * All rights reserved. |
Jonathan Austin |
0:bc2961fa1ef0 | 4 | * |
Jonathan Austin |
0:bc2961fa1ef0 | 5 | * Redistribution and use in source and binary forms, with or without modification, |
Jonathan Austin |
0:bc2961fa1ef0 | 6 | * are permitted provided that the following conditions are met: |
Jonathan Austin |
0:bc2961fa1ef0 | 7 | * |
Jonathan Austin |
0:bc2961fa1ef0 | 8 | * 1. Redistributions of source code must retain the above copyright notice, this |
Jonathan Austin |
0:bc2961fa1ef0 | 9 | * list of conditions and the following disclaimer. |
Jonathan Austin |
0:bc2961fa1ef0 | 10 | * |
Jonathan Austin |
0:bc2961fa1ef0 | 11 | * 2. Redistributions in binary form must reproduce the above copyright notice, this |
Jonathan Austin |
0:bc2961fa1ef0 | 12 | * list of conditions and the following disclaimer in the documentation and/or |
Jonathan Austin |
0:bc2961fa1ef0 | 13 | * other materials provided with the distribution. |
Jonathan Austin |
0:bc2961fa1ef0 | 14 | * |
Jonathan Austin |
0:bc2961fa1ef0 | 15 | * 3. Neither the name of Nordic Semiconductor ASA nor the names of other |
Jonathan Austin |
0:bc2961fa1ef0 | 16 | * contributors to this software may be used to endorse or promote products |
Jonathan Austin |
0:bc2961fa1ef0 | 17 | * derived from this software without specific prior written permission. |
Jonathan Austin |
0:bc2961fa1ef0 | 18 | * |
Jonathan Austin |
0:bc2961fa1ef0 | 19 | * |
Jonathan Austin |
0:bc2961fa1ef0 | 20 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
Jonathan Austin |
0:bc2961fa1ef0 | 21 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
Jonathan Austin |
0:bc2961fa1ef0 | 22 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
Jonathan Austin |
0:bc2961fa1ef0 | 23 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR |
Jonathan Austin |
0:bc2961fa1ef0 | 24 | * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
Jonathan Austin |
0:bc2961fa1ef0 | 25 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
Jonathan Austin |
0:bc2961fa1ef0 | 26 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
Jonathan Austin |
0:bc2961fa1ef0 | 27 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
Jonathan Austin |
0:bc2961fa1ef0 | 28 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
Jonathan Austin |
0:bc2961fa1ef0 | 29 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Jonathan Austin |
0:bc2961fa1ef0 | 30 | * |
Jonathan Austin |
0:bc2961fa1ef0 | 31 | */ |
Jonathan Austin |
0:bc2961fa1ef0 | 32 | |
Jonathan Austin |
0:bc2961fa1ef0 | 33 | #ifndef NRF_H |
Jonathan Austin |
0:bc2961fa1ef0 | 34 | #define NRF_H |
Jonathan Austin |
0:bc2961fa1ef0 | 35 | |
Jonathan Austin |
0:bc2961fa1ef0 | 36 | #if defined(_WIN32) |
Jonathan Austin |
0:bc2961fa1ef0 | 37 | /* Do not include nrf51 specific files when building for PC host */ |
Jonathan Austin |
0:bc2961fa1ef0 | 38 | #elif defined(__unix) |
Jonathan Austin |
0:bc2961fa1ef0 | 39 | /* Do not include nrf51 specific files when building for PC host */ |
Jonathan Austin |
0:bc2961fa1ef0 | 40 | #elif defined(__APPLE__) |
Jonathan Austin |
0:bc2961fa1ef0 | 41 | /* Do not include nrf51 specific files when building for PC host */ |
Jonathan Austin |
0:bc2961fa1ef0 | 42 | #else |
Jonathan Austin |
0:bc2961fa1ef0 | 43 | |
Jonathan Austin |
0:bc2961fa1ef0 | 44 | /* Family selection for family includes. */ |
Jonathan Austin |
0:bc2961fa1ef0 | 45 | #if defined (NRF51) |
Jonathan Austin |
0:bc2961fa1ef0 | 46 | #include "nrf51.h" |
Jonathan Austin |
0:bc2961fa1ef0 | 47 | #include "nrf51_bitfields.h" |
Jonathan Austin |
0:bc2961fa1ef0 | 48 | #include "nrf51_deprecated.h" |
Jonathan Austin |
0:bc2961fa1ef0 | 49 | #elif defined (NRF52) |
Jonathan Austin |
0:bc2961fa1ef0 | 50 | #include "nrf52.h" |
Jonathan Austin |
0:bc2961fa1ef0 | 51 | #include "nrf52_bitfields.h" |
Jonathan Austin |
0:bc2961fa1ef0 | 52 | #include "nrf51_to_nrf52.h" |
Jonathan Austin |
0:bc2961fa1ef0 | 53 | #else |
Jonathan Austin |
0:bc2961fa1ef0 | 54 | #error "Device family must be defined. See nrf.h." |
Jonathan Austin |
0:bc2961fa1ef0 | 55 | #endif /* NRF51, NRF52 */ |
Jonathan Austin |
0:bc2961fa1ef0 | 56 | |
Jonathan Austin |
0:bc2961fa1ef0 | 57 | #include "compiler_abstraction.h" |
Jonathan Austin |
0:bc2961fa1ef0 | 58 | |
Jonathan Austin |
0:bc2961fa1ef0 | 59 | #endif /* _WIN32 || __unix || __APPLE__ */ |
Jonathan Austin |
0:bc2961fa1ef0 | 60 | |
Jonathan Austin |
0:bc2961fa1ef0 | 61 | #endif /* NRF_H */ |
Jonathan Austin |
0:bc2961fa1ef0 | 62 |