osd-contiki/examples/osd/ota-update/sketch.pde
2017-10-05 16:53:26 +02:00

20 lines
271 B
Plaintext

/*
* Simple example with ota-update only
*/
extern "C" {
#include "er-coap.h"
#include "ota-update.h"
}
void setup (void)
{
rest_init_engine ();
OTA_ACTIVATE_RESOURCES();
}
void loop (void)
{
printf ("just sitting round and waiting for ota update\n");
}