1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #ifndef SDK_COMMON_H__
- #define SDK_COMMON_H__
- #include <stdint.h>
- #include <stdbool.h>
- #include <string.h>
- #include "sdk_config.h"
- #include "nordic_common.h"
- #include "compiler_abstraction.h"
- #include "sdk_os.h"
- #include "sdk_errors.h"
- #include "app_util.h"
- #include "sdk_macros.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|