Patched version of nrf51822 FOTA compatible driver, with GPTIO disabled, as it clashed with the mbed definitions...

Fork of nRF51822 by Nordic Semiconductor

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers sdk_os.h Source File

sdk_os.h

00001 /* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved.
00002  *
00003  * The information contained herein is property of Nordic Semiconductor ASA.
00004  * Terms and conditions of usage are described in detail in NORDIC
00005  * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
00006  *
00007  * Licensees are granted free, non-transferable use of the information. NO
00008  * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
00009  * the file.
00010  *
00011  */
00012 
00013  /** @cond */
00014 /**@file
00015  *
00016  * @defgroup sdk_os SDK OS Abstraction
00017  * @ingroup experimental_api
00018  * @details In order to made SDK modules independent of use of an embedded OS, and permit
00019  *          application with varied task architecture, SDK abstracts the OS specific
00020  *          elements here in order to make all other modules agnostic to the OS or task
00021  *          architecture.
00022  * @{
00023  */
00024 
00025 #ifndef SDK_OS_H__
00026 #define SDK_OS_H__
00027 
00028 #define SDK_MUTEX_DEFINE(X)
00029 #define SDK_MUTEX_INIT(X)
00030 #define SDK_MUTEX_LOCK(X)
00031 #define SDK_MUTEX_UNLOCK(X)
00032 
00033 /**
00034  * @defgroup os_data_type Data types.
00035  */
00036  
00037 /** @} */
00038 /** @endcond */
00039 #endif // SDK_OS_H__
00040