Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ CONTIKI_WITH_RPL = 0
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" -DVERSION='\"$(VERSION)\"'
CFLAGS += -Wall -Wno-pointer-sign -DLWM2M_CLIENT
CFLAGS += -I$(LWM2M_DIR)/api/include
CFLAGS += -I$(LWM2M_DIR)/core/src/erbium/

ifneq (,$(filter $(TARGET),seedeye mikro-e))
CFLAGS += -fno-short-double
LDFLAGS += -Wl,--defsym,_min_heap_size=64000
endif

APPS += er-coap
APPS += rest-engine
APPS += erbium
APPS += client
APPS += common
APPS += jsmn
Expand Down
2 changes: 1 addition & 1 deletion lwm2m-client-button-sensor.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ PROCESS_THREAD(lwm2m_client, ev, data)
static int WaitTime;
WaitTime = AwaStaticClient_Process(client);
etimer_set(&et, (WaitTime * CLOCK_SECOND) / 1000);
PROCESS_WAIT_EVENT_UNTIL(etimer_expired(&et) || (ev == sensors_event));
PROCESS_YIELD();

if (data == &button_sensor)
{
Expand Down