Zigbee Protocol Controller 1.6.0
attribute_store_process.h
Go to the documentation of this file.
1/******************************************************************************
2 * # License
3 * <b>Copyright 2022 Silicon Laboratories Inc. www.silabs.com</b>
4 ******************************************************************************
5 * The licensor of this software is Silicon Laboratories Inc. Your use of this
6 * software is governed by the terms of Silicon Labs Master Software License
7 * Agreement (MSLA) available at
8 * www.silabs.com/about-us/legal/master-software-license-agreement. This
9 * software is distributed to you in Source Code format and is governed by the
10 * sections of the MSLA applicable to Source Code.
11 *
12 *****************************************************************************/
13
26#ifndef ATTRIBUTE_STORE_PROCESS_H
27#define ATTRIBUTE_STORE_PROCESS_H
28
29#include "process.h"
30
36PROCESS_NAME(unify_attribute_store_process);
37
41typedef enum {
47
48#ifdef __cplusplus
49extern "C" {
50#endif
51
57
62
67
68#ifdef __cplusplus
69}
70#endif
71
72#endif //ATTRIBUTE_STORE_PROCESS_H
PROCESS_NAME(unify_attribute_store_process)
Name the of The Contiki RTOS process for the Unify Attribute Store.
void attribute_store_process_on_attribute_store_saved()
Notify the Attribute Store process that the attribute store was just saved to SQLite.
Definition: attribute_store_process.c:97
unify_attribute_store_events_t
Event definitions for the Unify Attribute Store Process.
Definition: attribute_store_process.h:41
void attribute_store_process_restart_auto_save_safety_timer()
Restarts the auto-save safety timer.
Definition: attribute_store_process.c:73
void attribute_store_process_restart_auto_save_cooldown_timer()
Restarts the auto-save cooldown timer.
Definition: attribute_store_process.c:85
@ RESTART_AUTO_SAVE_COOLDOWN_TIMER_EVENT
Restart the auto-save cooldown timer.
Definition: attribute_store_process.h:45
@ RESTART_AUTO_SAVE_SAFETY_TIMER_EVENT
Restart the auto-save safety timer.
Definition: attribute_store_process.h:43