mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2019 HAW Hamburg
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @{
|
|
* @ingroup lwm2m_client
|
|
*
|
|
* @file
|
|
* @brief Helper functions to interact with the basic objects provided by
|
|
* Wakaama from a LwM2M client.
|
|
*
|
|
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
|
* @}
|
|
*/
|
|
|
|
#include "kernel_defines.h"
|
|
|
|
#include "lwm2m_client.h"
|
|
#include "objects/device.h"
|
|
#include "lwm2m_client_config.h"
|
|
#include "lwm2m_client_objects.h"
|
|
|
|
/* These functions are defined by the objects (object_server.c is implemented by
|
|
* the Wakaama package. security.c and device.c can be found in
|
|
* 'contrib/objects') */
|
|
lwm2m_object_t *get_server_object(int server_id, const char *binding,
|
|
int lifetime, bool storing);
|
|
|
|
lwm2m_object_t *lwm2m_client_get_server_object(lwm2m_client_data_t *client_data,
|
|
int server_id)
|
|
{
|
|
(void)client_data;
|
|
lwm2m_object_t *ret;
|
|
int lifetime = CONFIG_LWM2M_DEVICE_TTL;
|
|
|
|
ret = get_server_object(server_id, CONFIG_LWM2M_DEVICE_BINDINGS, lifetime,
|
|
false);
|
|
return ret;
|
|
}
|