aboutsummaryrefslogtreecommitdiff
path: root/src/zjs_ble.h
blob: 0a1d81c305b61b278fd248aeff2c1f20c51b3419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2016-2017, Intel Corporation.

#ifndef __zjs_ble_h__
#define __zjs_ble_h__

#include "jerryscript.h"

/**
 * Initialize the ble module, or reinitialize after cleanup
 *
 * @return BLE API object
 */
jerry_value_t zjs_ble_init();

/** Release resources held by the ble module */
void zjs_ble_cleanup();

void zjs_ble_enable();

#endif  // __zjs_ble_h__