-
Notifications
You must be signed in to change notification settings - Fork 6
/
lwm2m-client-button-sensor.c
207 lines (176 loc) · 6.56 KB
/
lwm2m-client-button-sensor.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/**
* @file
* LightWeightM2M LWM2M client button application.
*
* @author Imagination Technologies
*
* @copyright Copyright (c) 2016, Imagination Technologies Limited and/or its affiliated group
* companies and/or licensors.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted
* provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions
* and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of
* conditions and the following disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors may be used to
* endorse or promote products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
* WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/***************************************************************************************************
* Includes
**************************************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "contiki.h"
#include "contiki-net.h"
#include "lib/sensors.h"
#include "button-sensor.h"
#include "awa/static.h"
#include "lwm2m-client-flow-object.h"
#include "lwm2m-client-flow-access-object.h"
#include "lwm2m-client-ipso-digital-input.h"
#include "lwm2m-client-device-object.h"
/***************************************************************************************************
* Definitions
**************************************************************************************************/
//! \{
#define COAP_PORT (6000)
#define IPC_PORT (12345)
#define BOOTSTRAP_PORT "15683"
#define END_POINT_NAME "ButtonDevice"
//! \}
/***************************************************************************************************
* Typedefs
**************************************************************************************************/
/**
* A structure to contain lwm2m client's options.
*/
typedef struct
{
//! \{
int CoapPort;
int IpcPort;
bool Verbose;
char * EndPointName;
char * BootStrap;
//! \}
} Options;
/***************************************************************************************************
* Globals
**************************************************************************************************/
//! \{
Options options =
{
.CoapPort = COAP_PORT,
.IpcPort = IPC_PORT,
.Verbose = true,
.BootStrap = "coap://["BOOTSTRAP_IPv6_ADDR"]:"BOOTSTRAP_PORT"/",
.EndPointName = END_POINT_NAME,
};
/***************************************************************************************************
* Implementation
**************************************************************************************************/
void ConstructObjectTree(AwaStaticClient *client)
{
DefineDeviceObject(client);
DefineFlowObject(client);
DefineFlowAccessObject(client);
DefineDigitalInputObject(client);
}
void AwaStaticClient_Start(AwaStaticClient *client)
{
AwaStaticClient_SetLogLevel((options.Verbose) ? AwaLogLevel_Debug : AwaLogLevel_Warning);
printf("LWM2M client - CoAP port %d\n", options.CoapPort);
printf("LWM2M client - IPC port %d\n", options.IpcPort);
AwaStaticClient_SetEndPointName(client, options.EndPointName);
AwaStaticClient_SetCoAPListenAddressPort(client, "0.0.0.0", options.CoapPort);
AwaStaticClient_SetBootstrapServerURI(client, options.BootStrap);
AwaStaticClient_Init(client);
ConstructObjectTree(client);
}
PROCESS(lwm2m_client, "LwM2M Client");
#ifndef BUTTON_PRESS_SIMULATION
AUTOSTART_PROCESSES(&lwm2m_client);
#else
PROCESS(button_press_simulator, "Button Press Simulator");
AUTOSTART_PROCESSES(&lwm2m_client, &button_press_simulator);
#endif
PROCESS_THREAD(lwm2m_client, ev, data)
{
PROCESS_BEGIN();
PROCESS_PAUSE();
printf("Starting LWM2M Client for lwm2m-client-button-sensor\n");
#ifdef RF_CHANNEL
printf("RF channel: %u\n", RF_CHANNEL);
#endif
#ifdef IEEE802154_PANID
printf("PAN ID: 0x%04X\n", IEEE802154_PANID);
#endif
printf("uIP buffer: %u\n", UIP_BUFSIZE);
printf("LL header: %u\n", UIP_LLH_LEN);
printf("IP+UDP header: %u\n", UIP_IPUDPH_LEN);
#ifdef REST_MAX_CHUNK_SIZE
printf("REST max chunk: %u\n", REST_MAX_CHUNK_SIZE);
#endif
uip_ipaddr_t ipaddr;
uip_ip6addr(&ipaddr, BOOTSTRAP_IPv6_ADDR1, BOOTSTRAP_IPv6_ADDR2, BOOTSTRAP_IPv6_ADDR3,
BOOTSTRAP_IPv6_ADDR4, BOOTSTRAP_IPv6_ADDR5, BOOTSTRAP_IPv6_ADDR6, BOOTSTRAP_IPv6_ADDR7,
BOOTSTRAP_IPv6_ADDR8);
uip_ds6_defrt_add(&ipaddr, 0);
static AwaStaticClient *client;
client = AwaStaticClient_New();
AwaStaticClient_Start(client);
/* Define application-specific events here. */
while(1)
{
static struct etimer et;
static int WaitTime;
WaitTime = AwaStaticClient_Process(client);
etimer_set(&et, (WaitTime * CLOCK_SECOND) / 1000);
PROCESS_WAIT_EVENT_UNTIL(etimer_expired(&et) || (ev == sensors_event));
if (data == &button_sensor)
{
printf("Button press event received\n");
DigitalInput_IncrementCounter(client, 0);
}
}
PROCESS_END();
}
/*---------------------------------------------------------------------------*/
#ifdef BUTTON_PRESS_SIMULATION
/**
* @brief Simulate button presses periodically (required for automated testing).
*/
PROCESS_THREAD(button_press_simulator, ev, data)
{
PROCESS_BEGIN();
static struct etimer button_timer;
int wait_time = BUTTON_PRESS_PERIOD * CLOCK_SECOND;
etimer_set(&button_timer, wait_time);
while(1) {
PROCESS_WAIT_EVENT_UNTIL(etimer_expired(&button_timer));
process_post(PROCESS_BROADCAST, sensors_event, (void *)&button_sensor);
etimer_reset(&button_timer);
}
PROCESS_END();
}
#endif
/*---------------------------------------------------------------------------*/
//! \}