moved to apps folder
This commit is contained in:
parent
259827b031
commit
86596ac92f
1
apps/ota-update/Makefile.ota-update
Normal file
1
apps/ota-update/Makefile.ota-update
Normal file
|
@ -0,0 +1 @@
|
||||||
|
ota-update_src = res_bootloader.c res_reboot.c res_upload_image.c
|
22
apps/ota-update/ota-update.h
Normal file
22
apps/ota-update/ota-update.h
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
extern resource_t res_upload_image;
|
||||||
|
extern resource_t res_part_count;
|
||||||
|
extern resource_t res_part_size;
|
||||||
|
extern resource_t res_boot_default;
|
||||||
|
extern resource_t res_boot_next;
|
||||||
|
extern resource_t res_active_part;
|
||||||
|
extern resource_t res_part_start;
|
||||||
|
extern resource_t res_part_ok;
|
||||||
|
extern resource_t res_reboot;
|
||||||
|
|
||||||
|
#define OTA_ACTIVATE_RESOURCES() \
|
||||||
|
static char resname[] = "ota/update";\
|
||||||
|
rest_activate_resource (&res_upload_image, resname);\
|
||||||
|
rest_activate_resource (&res_part_count, (char *)"ota/part_count");\
|
||||||
|
rest_activate_resource (&res_part_size, (char *)"ota/part_size");\
|
||||||
|
rest_activate_resource (&res_boot_default, (char *)"ota/boot_default");\
|
||||||
|
rest_activate_resource (&res_boot_next, (char *)"ota/boot_next");\
|
||||||
|
rest_activate_resource (&res_active_part, (char *)"ota/active_part");\
|
||||||
|
rest_activate_resource (&res_part_start, (char *)"ota/part_start");\
|
||||||
|
rest_activate_resource (&res_part_ok, (char *)"ota/part_ok");\
|
||||||
|
rest_activate_resource (&res_reboot, (char *)"ota/reboot");
|
||||||
|
|
108
apps/ota-update/res_reboot.c
Normal file
108
apps/ota-update/res_reboot.c
Normal file
|
@ -0,0 +1,108 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2017, Marcus Priesch Open Source Consulting
|
||||||
|
* 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 Institute 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 INSTITUTE 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 INSTITUTE 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.
|
||||||
|
*
|
||||||
|
* This file is part of the Contiki operating system.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file
|
||||||
|
* Reboot ressource
|
||||||
|
* \author
|
||||||
|
* Marcus Priesch <marcus@priesch.co.at>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include "contiki.h"
|
||||||
|
#include "er-coap-engine.h"
|
||||||
|
#include "generic_resource.h"
|
||||||
|
#include "dev/watchdog.h"
|
||||||
|
|
||||||
|
PROCESS(reboot_process, "reboot");
|
||||||
|
PROCESS_THREAD(reboot_process, ev, data)
|
||||||
|
{
|
||||||
|
static struct etimer etimer;
|
||||||
|
|
||||||
|
//PROCESS_EXITHANDLER(leds_off(LEDS_ALL);)
|
||||||
|
|
||||||
|
PROCESS_BEGIN();
|
||||||
|
|
||||||
|
//shell_output_str(&reboot_command,
|
||||||
|
// "Rebooting the node in four seconds...", "");
|
||||||
|
|
||||||
|
etimer_set(&etimer, CLOCK_SECOND * 4);
|
||||||
|
PROCESS_WAIT_UNTIL(etimer_expired(&etimer));
|
||||||
|
//leds_on(LEDS_RED);
|
||||||
|
//etimer_reset(&etimer);
|
||||||
|
//PROCESS_WAIT_UNTIL(etimer_expired(&etimer));
|
||||||
|
//leds_on(LEDS_GREEN);
|
||||||
|
//etimer_reset(&etimer);
|
||||||
|
//PROCESS_WAIT_UNTIL(etimer_expired(&etimer));
|
||||||
|
//leds_on(LEDS_BLUE);
|
||||||
|
//etimer_reset(&etimer);
|
||||||
|
//PROCESS_WAIT_UNTIL(etimer_expired(&etimer));
|
||||||
|
|
||||||
|
watchdog_reboot();
|
||||||
|
|
||||||
|
PROCESS_END();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static size_t
|
||||||
|
get_reboot
|
||||||
|
( const char *name
|
||||||
|
, const char *uri
|
||||||
|
, const char *query
|
||||||
|
, char *buf
|
||||||
|
, size_t bsize
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return snprintf (buf, bsize, "put 'OK' to reboot.");
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
do_reboot
|
||||||
|
(const char *name, const char *uri, const char *query, const char *s)
|
||||||
|
{
|
||||||
|
if (strncmp (s, "OK", 2) == 0) {
|
||||||
|
process_start (&reboot_process, NULL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
GENERIC_RESOURCE
|
||||||
|
( reboot
|
||||||
|
, Reboot node
|
||||||
|
, count
|
||||||
|
, 0
|
||||||
|
, do_reboot
|
||||||
|
, get_reboot
|
||||||
|
);
|
||||||
|
|
|
@ -11,7 +11,18 @@ CONTIKI_WITH_IPV6 = 1
|
||||||
|
|
||||||
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
|
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
|
||||||
|
|
||||||
PROJECT_SOURCEFILES += res_upload_image.c res_bootloader.c ${SKETCH}.cpp
|
PROJECT_SOURCEFILES += ${SKETCH}.cpp
|
||||||
|
|
||||||
|
# automatically build RESTful resources
|
||||||
|
REST_RESOURCES_DIR = ./resources
|
||||||
|
REST_RESOURCES_DIR_COMMON = ../resources-common
|
||||||
|
REST_RESOURCES_FILES= $(notdir \
|
||||||
|
$(shell find $(REST_RESOURCES_DIR) -name '*.c') \
|
||||||
|
$(shell find $(REST_RESOURCES_DIR_COMMON) -name '*.c') \
|
||||||
|
)
|
||||||
|
|
||||||
|
PROJECTDIRS += $(REST_RESOURCES_DIR) $(REST_RESOURCES_DIR_COMMON)
|
||||||
|
PROJECT_SOURCEFILES += $(REST_RESOURCES_FILES)
|
||||||
|
|
||||||
# variable for Makefile.include
|
# variable for Makefile.include
|
||||||
ifneq ($(TARGET), minimal-net)
|
ifneq ($(TARGET), minimal-net)
|
||||||
|
@ -33,7 +44,7 @@ SMALL=1
|
||||||
# REST Engine shall use Erbium CoAP implementation
|
# REST Engine shall use Erbium CoAP implementation
|
||||||
APPS += er-coap
|
APPS += er-coap
|
||||||
APPS += rest-engine
|
APPS += rest-engine
|
||||||
APPS += arduino json-resource json #time
|
APPS += arduino json-resource json ota-update
|
||||||
|
|
||||||
include $(CONTIKI)/Makefile.include
|
include $(CONTIKI)/Makefile.include
|
||||||
include $(CONTIKI)/apps/arduino/Makefile.include
|
include $(CONTIKI)/apps/arduino/Makefile.include
|
||||||
|
|
|
@ -101,8 +101,14 @@ that are not kept in the directory:
|
||||||
- ``/part_start``: This resource needs an additional query-parameter
|
- ``/part_start``: This resource needs an additional query-parameter
|
||||||
indicating the partition number, e.g., ``/part_start?part=1`` and
|
indicating the partition number, e.g., ``/part_start?part=1`` and
|
||||||
returns the partition start address in flash.
|
returns the partition start address in flash.
|
||||||
- ``active_part``: The partition that is currently booted.
|
- ``/active_part``: The partition that is currently booted.
|
||||||
|
|
||||||
|
How to use in your own code
|
||||||
|
===========================
|
||||||
|
|
||||||
|
- add app "ota-update" to the Makefile
|
||||||
|
- add #include "ota-update.h"
|
||||||
|
- add OTA_ACTIVATE_RESOURCES() to your code to activate the resources
|
||||||
|
|
||||||
Security
|
Security
|
||||||
========
|
========
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
extern resource_t res_upload_image;
|
|
||||||
extern resource_t res_part_count;
|
|
||||||
extern resource_t res_part_size;
|
|
||||||
extern resource_t res_boot_default;
|
|
||||||
extern resource_t res_boot_next;
|
|
||||||
extern resource_t res_active_part;
|
|
||||||
extern resource_t res_part_start;
|
|
||||||
extern resource_t res_part_ok;
|
|
|
@ -1,35 +1,19 @@
|
||||||
/*
|
/*
|
||||||
* Gardena 9V Magnet-Valve
|
* Simple example with ota-update only
|
||||||
* We have a CoAP Resource for the Valve, it can be in state 1 (on) and
|
|
||||||
* 0 (off).
|
|
||||||
* Transition on-off outputs a negative pulse
|
|
||||||
* Transition off-on outputs a positive pulse
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#include <stdio.h>
|
|
||||||
#include "contiki.h"
|
|
||||||
#include "contiki-net.h"
|
|
||||||
#include "er-coap.h"
|
#include "er-coap.h"
|
||||||
#include "resources.h"
|
#include "ota-update.h"
|
||||||
char resname[] = "update";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void setup (void)
|
void setup (void)
|
||||||
{
|
{
|
||||||
rest_init_engine ();
|
rest_init_engine ();
|
||||||
rest_activate_resource (&res_upload_image, resname);
|
OTA_ACTIVATE_RESOURCES();
|
||||||
rest_activate_resource (&res_part_count, (char *)"part_count");
|
|
||||||
rest_activate_resource (&res_part_size, (char *)"part_size");
|
|
||||||
rest_activate_resource (&res_boot_default, (char *)"boot_default");
|
|
||||||
rest_activate_resource (&res_boot_next, (char *)"boot_next");
|
|
||||||
rest_activate_resource (&res_active_part, (char *)"active_part");
|
|
||||||
rest_activate_resource (&res_part_start, (char *)"part_start");
|
|
||||||
rest_activate_resource (&res_part_ok, (char *)"part_ok");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop (void)
|
void loop (void)
|
||||||
{
|
{
|
||||||
printf ("Hello\n");
|
printf ("just sitting round and waiting for ota update\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue