mirror of
https://github.com/tsl0922/EPD-nRF5.git
synced 2026-05-21 05:35:46 +08:00
Initial commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/* Copyright (c) 2014 Nordic Semiconductor. All Rights Reserved.
|
||||
*
|
||||
* The information contained herein is property of Nordic Semiconductor ASA.
|
||||
* Terms and conditions of usage are described in detail in NORDIC
|
||||
* SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
|
||||
*
|
||||
* Licensees are granted free, non-transferable use of the information. NO
|
||||
* WARRANTY of ANY KIND is provided. This heading must NOT be removed from
|
||||
* the file.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SOFTDEVICE_HANDLER_APPSH_H
|
||||
#define SOFTDEVICE_HANDLER_APPSH_H
|
||||
|
||||
#include "softdevice_handler.h"
|
||||
#include <stdint.h>
|
||||
|
||||
#define SOFTDEVICE_HANDLER_APPSH_INIT(CLOCK_SOURCE,USE_SCHEDULER) \
|
||||
SOFTDEVICE_HANDLER_INIT(CLOCK_SOURCE,(USE_SCHEDULER) ? softdevice_evt_schedule : NULL)
|
||||
|
||||
uint32_t softdevice_evt_schedule(void);
|
||||
|
||||
#endif //SOFTDEVICE_HANDLER_APPSH_H
|
||||
Reference in New Issue
Block a user