cleanup code, move shell-merkur to apps/shell; move needed function from extended-rf-api to params
This commit is contained in:
parent
fedd9cb0d7
commit
6694583291
|
@ -66,3 +66,11 @@ endif
|
||||||
ifeq ($(TARGET),z1)
|
ifeq ($(TARGET),z1)
|
||||||
shell_src += shell-sky.c shell-exec.c
|
shell_src += shell-sky.c shell-exec.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(TARGET),osd-merkur-256)
|
||||||
|
shell_src += shell-merkur.c
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(TARGET),osd-merkur-128)
|
||||||
|
shell_src += shell-merkur.c
|
||||||
|
endif
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
#include "sys/cc.h"
|
#include "sys/cc.h"
|
||||||
#include "dev/radio.h"
|
#include "dev/radio.h"
|
||||||
#include "shell-merkur.h"
|
#include "shell-merkur.h"
|
||||||
#include "extended-rf-api.h"
|
//#include "extended-rf-api.h"
|
||||||
#include "params.h"
|
#include "params.h"
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
|
@ -12,7 +12,7 @@ CONTIKI_WITH_IPV6 = 1
|
||||||
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
|
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
|
||||||
CFLAGS += -DCONTIKI_CONF_SETTINGS_MANAGER=1
|
CFLAGS += -DCONTIKI_CONF_SETTINGS_MANAGER=1
|
||||||
|
|
||||||
PROJECT_SOURCEFILES += ${SKETCH}.cpp shell-merkur.c extended-rf-api.c
|
PROJECT_SOURCEFILES += ${SKETCH}.cpp
|
||||||
|
|
||||||
# automatically build RESTful resources
|
# automatically build RESTful resources
|
||||||
REST_RESOURCES_DIR = ./resources
|
REST_RESOURCES_DIR = ./resources
|
||||||
|
|
|
@ -1,192 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (c) 2014, George Oikonomou (george@contiki-os.org)
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Example project demonstrating the extended RF API functionality
|
|
||||||
*/
|
|
||||||
#include "contiki.h"
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
#include "net/netstack.h"
|
|
||||||
#include "dev/radio.h"
|
|
||||||
#include "extended-rf-api.h"
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
struct rf_consts {
|
|
||||||
radio_value_t channel_min;
|
|
||||||
radio_value_t channel_max;
|
|
||||||
radio_value_t txpower_min;
|
|
||||||
radio_value_t txpower_max;
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct rf_consts consts;
|
|
||||||
|
|
||||||
void
|
|
||||||
print_64bit_addr(const uint8_t *addr)
|
|
||||||
{
|
|
||||||
unsigned int i;
|
|
||||||
for(i = 0; i < 7; i++) {
|
|
||||||
printf("%02x:", addr[i]);
|
|
||||||
}
|
|
||||||
printf("%02x (network order)\n", addr[7]);
|
|
||||||
}
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
radio_result_t
|
|
||||||
get_object(radio_param_t param, void *dest, size_t size)
|
|
||||||
{
|
|
||||||
radio_result_t rv;
|
|
||||||
|
|
||||||
rv = NETSTACK_RADIO.get_object(param, dest, size);
|
|
||||||
|
|
||||||
switch(rv) {
|
|
||||||
case RADIO_RESULT_ERROR:
|
|
||||||
printf("Radio returned an error\n");
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_INVALID_VALUE:
|
|
||||||
printf("Value is invalid\n");
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_NOT_SUPPORTED:
|
|
||||||
printf("Param %u not supported\n", param);
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_OK:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
printf("Unknown return value\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return rv;
|
|
||||||
}
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
radio_result_t
|
|
||||||
set_object(radio_param_t param, void *src, size_t size)
|
|
||||||
{
|
|
||||||
radio_result_t rv;
|
|
||||||
|
|
||||||
rv = NETSTACK_RADIO.set_object(param, src, size);
|
|
||||||
|
|
||||||
switch(rv) {
|
|
||||||
case RADIO_RESULT_ERROR:
|
|
||||||
printf("Radio returned an error\n");
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_INVALID_VALUE:
|
|
||||||
printf("Value is invalid\n");
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_NOT_SUPPORTED:
|
|
||||||
printf("Param %u not supported\n", param);
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_OK:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
printf("Unknown return value\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return rv;
|
|
||||||
}
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
radio_result_t
|
|
||||||
get_param(radio_param_t param, radio_value_t *value)
|
|
||||||
{
|
|
||||||
radio_result_t rv;
|
|
||||||
|
|
||||||
rv = NETSTACK_RADIO.get_value(param, value);
|
|
||||||
|
|
||||||
switch(rv) {
|
|
||||||
case RADIO_RESULT_ERROR:
|
|
||||||
printf("Radio returned an error\n");
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_INVALID_VALUE:
|
|
||||||
printf("Value %d is invalid\n", *value);
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_NOT_SUPPORTED:
|
|
||||||
printf("Param %u not supported\n", param);
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_OK:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
printf("Unknown return value\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return rv;
|
|
||||||
}
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
radio_result_t
|
|
||||||
set_param(radio_param_t param, radio_value_t value)
|
|
||||||
{
|
|
||||||
radio_result_t rv;
|
|
||||||
|
|
||||||
rv = NETSTACK_RADIO.set_value(param, value);
|
|
||||||
|
|
||||||
switch(rv) {
|
|
||||||
case RADIO_RESULT_ERROR:
|
|
||||||
printf("Radio returned an error\n");
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_INVALID_VALUE:
|
|
||||||
printf("Value %d is invalid\n", value);
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_NOT_SUPPORTED:
|
|
||||||
printf("Param %u not supported\n", param);
|
|
||||||
break;
|
|
||||||
case RADIO_RESULT_OK:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
printf("Unknown return value\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return rv;
|
|
||||||
}
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
void
|
|
||||||
get_rf_consts(void)
|
|
||||||
{
|
|
||||||
printf("====================================\n");
|
|
||||||
printf("RF Constants\n");
|
|
||||||
printf("Min Channel : ");
|
|
||||||
if(get_param(RADIO_CONST_CHANNEL_MIN, &consts.channel_min) == RADIO_RESULT_OK) {
|
|
||||||
printf("%3d\n", consts.channel_min);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("Max Channel : ");
|
|
||||||
if(get_param(RADIO_CONST_CHANNEL_MAX, &consts.channel_max) == RADIO_RESULT_OK) {
|
|
||||||
printf("%3d\n", consts.channel_max);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("Min TX Power: ");
|
|
||||||
if(get_param(RADIO_CONST_TXPOWER_MIN, &consts.txpower_min) == RADIO_RESULT_OK) {
|
|
||||||
printf("%3d dBm\n", consts.txpower_min);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("Max TX Power: ");
|
|
||||||
if(get_param(RADIO_CONST_TXPOWER_MAX, &consts.txpower_max) == RADIO_RESULT_OK) {
|
|
||||||
printf("%3d dBm\n", consts.txpower_max);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,45 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (c) 2014, George Oikonomou (george@contiki-os.org)
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Example project demonstrating the extended RF API functionality
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef EXTENDED_RF_API_H_
|
|
||||||
#define EXTENDED_RF_API_H_
|
|
||||||
|
|
||||||
void print_64bit_addr(const uint8_t *addr);
|
|
||||||
radio_result_t get_object(radio_param_t param, void *dest, size_t size);
|
|
||||||
radio_result_t set_object(radio_param_t param, void *src, size_t size);
|
|
||||||
radio_result_t get_param(radio_param_t param, radio_value_t *value);
|
|
||||||
radio_result_t set_param(radio_param_t param, radio_value_t value);
|
|
||||||
void get_rf_consts(void);
|
|
||||||
|
|
||||||
#endif /* EXTENDED_RF_API_H_ */
|
|
|
@ -27,8 +27,6 @@ uint8_t led_status;
|
||||||
|
|
||||||
void setup (void)
|
void setup (void)
|
||||||
{
|
{
|
||||||
settings_status_t status;
|
|
||||||
|
|
||||||
// switch off the led
|
// switch off the led
|
||||||
pinMode(led_pin, OUTPUT);
|
pinMode(led_pin, OUTPUT);
|
||||||
digitalWrite(led_pin, HIGH);
|
digitalWrite(led_pin, HIGH);
|
||||||
|
@ -50,11 +48,7 @@ void setup (void)
|
||||||
|
|
||||||
void loop (void)
|
void loop (void)
|
||||||
{
|
{
|
||||||
int i;
|
|
||||||
settings_iter_t iter;
|
settings_iter_t iter;
|
||||||
char hostname[30];
|
|
||||||
uint16_t panid;
|
|
||||||
uint16_t channel;
|
|
||||||
|
|
||||||
/*************************************************************************/
|
/*************************************************************************/
|
||||||
/* Iterating thru all settings */
|
/* Iterating thru all settings */
|
||||||
|
|
|
@ -344,4 +344,57 @@ params_save_txpower(void) {
|
||||||
return rx;
|
return rx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
radio_result_t
|
||||||
|
get_param(radio_param_t param, radio_value_t *value)
|
||||||
|
{
|
||||||
|
radio_result_t rv;
|
||||||
|
|
||||||
|
rv = NETSTACK_RADIO.get_value(param, value);
|
||||||
|
|
||||||
|
switch(rv) {
|
||||||
|
case RADIO_RESULT_ERROR:
|
||||||
|
printf("Radio returned an error\n");
|
||||||
|
break;
|
||||||
|
case RADIO_RESULT_INVALID_VALUE:
|
||||||
|
printf("Value %d is invalid\n", *value);
|
||||||
|
break;
|
||||||
|
case RADIO_RESULT_NOT_SUPPORTED:
|
||||||
|
printf("Param %u not supported\n", param);
|
||||||
|
break;
|
||||||
|
case RADIO_RESULT_OK:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
printf("Unknown return value\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return rv;
|
||||||
|
}
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
radio_result_t
|
||||||
|
set_param(radio_param_t param, radio_value_t value)
|
||||||
|
{
|
||||||
|
radio_result_t rv;
|
||||||
|
|
||||||
|
rv = NETSTACK_RADIO.set_value(param, value);
|
||||||
|
|
||||||
|
switch(rv) {
|
||||||
|
case RADIO_RESULT_ERROR:
|
||||||
|
printf("Radio returned an error\n");
|
||||||
|
break;
|
||||||
|
case RADIO_RESULT_INVALID_VALUE:
|
||||||
|
printf("Value %d is invalid\n", value);
|
||||||
|
break;
|
||||||
|
case RADIO_RESULT_NOT_SUPPORTED:
|
||||||
|
printf("Param %u not supported\n", param);
|
||||||
|
break;
|
||||||
|
case RADIO_RESULT_OK:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
printf("Unknown return value\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return rv;
|
||||||
|
}
|
||||||
#endif /* CONTIKI_CONF_SETTINGS_MANAGER */
|
#endif /* CONTIKI_CONF_SETTINGS_MANAGER */
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
*
|
*
|
||||||
* Note the parameters in this file can be changed without forcing a complete rebuild.
|
* Note the parameters in this file can be changed without forcing a complete rebuild.
|
||||||
*/
|
*/
|
||||||
|
#include "dev/radio.h"
|
||||||
|
|
||||||
// default settings
|
// default settings
|
||||||
#define CHANNEL_802_15_4 25 // default frequency (11-26)
|
#define CHANNEL_802_15_4 25 // default frequency (11-26)
|
||||||
|
|
||||||
|
@ -116,6 +118,8 @@ settings_status_t params_save_channel(void);
|
||||||
settings_status_t params_save_panid(void);
|
settings_status_t params_save_panid(void);
|
||||||
settings_status_t params_save_panaddr(void);
|
settings_status_t params_save_panaddr(void);
|
||||||
settings_status_t params_save_txpower(void);
|
settings_status_t params_save_txpower(void);
|
||||||
|
radio_result_t get_param(radio_param_t param, radio_value_t *value);
|
||||||
|
radio_result_t set_param(radio_param_t param, radio_value_t value);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* PARAMS_H_ */
|
#endif /* PARAMS_H_ */
|
||||||
|
|
Loading…
Reference in a new issue