Birkbeck College Mobile and Ubiquitous Computing IoT Lab Exercise 2

Dependencies:   BLE_API_Native_blog

Committer:
gkroussos
Date:
Sat Mar 07 16:34:53 2015 +0000
Revision:
0:e8fdba0ed044
MUC IoT Workshop v1.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gkroussos 0:e8fdba0ed044 1 /* mbed Microcontroller Library
gkroussos 0:e8fdba0ed044 2
gkroussos 0:e8fdba0ed044 3 * Copyright (c) 2013 Nordic Semiconductor.
gkroussos 0:e8fdba0ed044 4 *
gkroussos 0:e8fdba0ed044 5 * Licensed under the Apache License, Version 2.0 (the "License");
gkroussos 0:e8fdba0ed044 6 * you may not use this file except in compliance with the License.
gkroussos 0:e8fdba0ed044 7 * You may obtain a copy of the License at
gkroussos 0:e8fdba0ed044 8 *
gkroussos 0:e8fdba0ed044 9 * http://www.apache.org/licenses/LICENSE-2.0
gkroussos 0:e8fdba0ed044 10 *
gkroussos 0:e8fdba0ed044 11 * Unless required by applicable law or agreed to in writing, software
gkroussos 0:e8fdba0ed044 12 * distributed under the License is distributed on an "AS IS" BASIS,
gkroussos 0:e8fdba0ed044 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
gkroussos 0:e8fdba0ed044 14 * See the License for the specific language governing permissions and
gkroussos 0:e8fdba0ed044 15 * limitations under the License.
gkroussos 0:e8fdba0ed044 16 */
gkroussos 0:e8fdba0ed044 17
gkroussos 0:e8fdba0ed044 18
gkroussos 0:e8fdba0ed044 19 #ifndef SYSTEM_NRF51_H
gkroussos 0:e8fdba0ed044 20 #define SYSTEM_NRF51_H
gkroussos 0:e8fdba0ed044 21
gkroussos 0:e8fdba0ed044 22 #ifdef __cplusplus
gkroussos 0:e8fdba0ed044 23 extern "C" {
gkroussos 0:e8fdba0ed044 24 #endif
gkroussos 0:e8fdba0ed044 25
gkroussos 0:e8fdba0ed044 26 #include <stdint.h>
gkroussos 0:e8fdba0ed044 27
gkroussos 0:e8fdba0ed044 28
gkroussos 0:e8fdba0ed044 29 extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
gkroussos 0:e8fdba0ed044 30
gkroussos 0:e8fdba0ed044 31 /**
gkroussos 0:e8fdba0ed044 32 * Initialize the system
gkroussos 0:e8fdba0ed044 33 *
gkroussos 0:e8fdba0ed044 34 * @param none
gkroussos 0:e8fdba0ed044 35 * @return none
gkroussos 0:e8fdba0ed044 36 *
gkroussos 0:e8fdba0ed044 37 * @brief Setup the microcontroller system.
gkroussos 0:e8fdba0ed044 38 * Initialize the System and update the SystemCoreClock variable.
gkroussos 0:e8fdba0ed044 39 */
gkroussos 0:e8fdba0ed044 40 extern void SystemInit (void);
gkroussos 0:e8fdba0ed044 41
gkroussos 0:e8fdba0ed044 42
gkroussos 0:e8fdba0ed044 43 /**
gkroussos 0:e8fdba0ed044 44 * Update SystemCoreClock variable
gkroussos 0:e8fdba0ed044 45 *
gkroussos 0:e8fdba0ed044 46 * @param none
gkroussos 0:e8fdba0ed044 47 * @return none
gkroussos 0:e8fdba0ed044 48 *
gkroussos 0:e8fdba0ed044 49 * @brief Updates the SystemCoreClock with current core Clock
gkroussos 0:e8fdba0ed044 50 * retrieved from cpu registers.
gkroussos 0:e8fdba0ed044 51 */
gkroussos 0:e8fdba0ed044 52 extern void SystemCoreClockUpdate (void);
gkroussos 0:e8fdba0ed044 53
gkroussos 0:e8fdba0ed044 54 #ifdef __cplusplus
gkroussos 0:e8fdba0ed044 55 }
gkroussos 0:e8fdba0ed044 56 #endif
gkroussos 0:e8fdba0ed044 57
gkroussos 0:e8fdba0ed044 58 #endif /* SYSTEM_NRF51_H */