forked from jvermillard/Wakaama-mbed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
141 lines (104 loc) · 2.92 KB
/
main.cpp
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
/*
* Author: Edoardo De Marchi
* Date: 15/02/14
* Notes: Checks the Ethernet cable connection
*/
// I think it's the key :)
extern "C" {
#include "wakaama/liblwm2m.h"
}
#include "mbed.h"
#include "EthernetInterface.h"
#include "UDPSocket.h"
DigitalOut led1(LED1);
DigitalOut led2(LED2);
DigitalOut led3(LED3);
DigitalOut led4(LED4);
//ETHERNET
#define ECHO_SERVER_PORT 2000
//char* ip = "192.168.153.153"; // ip
//char* mask = "255.255.255.0"; // mask
//char* gateway = "192.168.153.100"; // gateway
EthernetInterface eth;
UDPSocket udp;
extern "C" {
extern lwm2m_object_t * get_object_device();
}
int Init()
{
led1 = 0;
led2 = 0;
led3 = 0;
led4 = 0;
// ETHERNET
// use this for static IP
//eth.init(ip, mask, gateway);
// DHCP
eth.init();
eth.connect();
udp.init();
udp.bind(5683);
udp.set_blocking(false, 60000);
printf("IP Address is %s\r\n", eth.getIPAddress());
return 0;
}
static uint8_t prv_buffer_send(void * sessionH,
uint8_t * buffer,
size_t length,
void * userdata)
{
Endpoint * connP = (Endpoint*) sessionH;
if (-1 == udp.sendTo(*connP, (char*)buffer, length))
{
return COAP_500_INTERNAL_SERVER_ERROR;
}
return COAP_NO_ERROR;
}
int main()
{
Init();
printf("Hello\n");
Endpoint client;
char buffer[1024];
lwm2m_context_t * lwm2mH = NULL;
lwm2m_object_t * objArray[3];
lwm2m_security_t security;
int result;
objArray[0] = get_object_device();
if (NULL == objArray[0])
{
fprintf(stderr, "Failed to create Device object\r\n");
return -1;
}
lwm2mH = lwm2m_init("myfreakingmbed", 1, objArray, prv_buffer_send, NULL);
if (NULL == lwm2mH)
{
fprintf(stderr, "lwm2m_init() failed\r\n");
return -1;
}
Endpoint server;
server.set_address("54.228.25.31",5683);
memset(&security, 0, sizeof(lwm2m_security_t));
result = lwm2m_add_server(lwm2mH, 123, 0, NULL, BINDING_U, (void *)&server, &security);
if (result != 0)
{
fprintf(stderr, "lwm2m_add_server() failed: 0x%X\r\n", result);
return -1;
}
result = lwm2m_register(lwm2mH);
if (result != 0)
{
fprintf(stderr, "lwm2m_register() failed: 0x%X\r\n", result);
return -1;
}
while (true) {
printf("loop...\n");
struct timeval tv;
result = lwm2m_step(lwm2mH, &tv);
int n = udp.receiveFrom(client, buffer, sizeof(buffer));
printf("Received packet from: %s of size %d\n", client.get_address(), n);
if (n>0) {
lwm2m_handle_packet(lwm2mH, (uint8_t*)buffer, n, (void*) &server);
}
}
}