1 /* Bluetooth: Mesh Generic OnOff, Generic Level, Lighting & Vendor Models 2 * 3 * Copyright (c) 2018 Vikrant More 4 * 5 * SPDX-License-Identifier: Apache-2.0 6 */ 7 8 #ifndef _PUBLISHER_H 9 #define _PUBLISHER_H 10 11 /* Others */ 12 #define LEVEL_S0 -32768 13 #define LEVEL_S25 -16384 14 #define LEVEL_S50 0 15 #define LEVEL_S75 16384 16 #define LEVEL_S100 32767 17 18 #define LEVEL_U0 0 19 #define LEVEL_U25 16384 20 #define LEVEL_U50 32768 21 #define LEVEL_U75 49152 22 #define LEVEL_U100 65535 23 24 void randomize_publishers_TID(void); 25 void publish(struct ble_npl_event *work); 26 27 #endif 28