2009-09-08 22:06:28 +02:00
|
|
|
#include "contiki.h"
|
|
|
|
#include "sys/clock.h"
|
|
|
|
#include "sys/autostart.h"
|
|
|
|
|
|
|
|
#include "dev/serial-line.h"
|
2012-03-05 17:28:06 +01:00
|
|
|
#include "dev/slip.h"
|
2009-09-08 22:06:28 +02:00
|
|
|
#include "dev/bus.h"
|
|
|
|
#include "dev/leds.h"
|
2012-03-05 17:28:06 +01:00
|
|
|
#include "dev/uart1.h"
|
|
|
|
#include "dev/dma.h"
|
2009-09-08 22:06:28 +02:00
|
|
|
#include "dev/models.h"
|
|
|
|
#include "dev/cc2430_rf.h"
|
2012-03-05 17:28:06 +01:00
|
|
|
#include "dev/watchdog.h"
|
|
|
|
#include "dev/lpm.h"
|
2013-12-12 20:50:07 +01:00
|
|
|
#include "net/rime/rime.h"
|
2012-03-05 17:28:06 +01:00
|
|
|
#include "net/netstack.h"
|
|
|
|
#include "net/mac/frame802154.h"
|
2012-04-02 01:22:58 +02:00
|
|
|
#include "debug.h"
|
2012-09-07 16:23:08 +02:00
|
|
|
#include "stack.h"
|
2012-03-05 17:28:06 +01:00
|
|
|
#include "dev/watchdog-cc2430.h"
|
|
|
|
#include "dev/sensinode-sensors.h"
|
|
|
|
#include "disco.h"
|
|
|
|
#include "contiki-lib.h"
|
|
|
|
#include "contiki-net.h"
|
2009-09-08 22:06:28 +02:00
|
|
|
|
2009-09-11 10:03:42 +02:00
|
|
|
unsigned short node_id = 0; /* Manually sets MAC address when > 0 */
|
2009-09-08 22:06:28 +02:00
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
#if VIZTOOL_CONF_ON
|
|
|
|
PROCESS_NAME(viztool_process);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if BATMON_CONF_ON
|
|
|
|
PROCESS_NAME(batmon_process);
|
|
|
|
#endif
|
|
|
|
|
2012-04-01 22:43:22 +02:00
|
|
|
#if NETSTACK_CONF_SHORTCUTS
|
2012-09-07 15:48:15 +02:00
|
|
|
static CC_AT_DATA uint16_t len;
|
2012-03-05 17:28:06 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef STARTUP_CONF_VERBOSE
|
|
|
|
#define STARTUP_VERBOSE STARTUP_CONF_VERBOSE
|
|
|
|
#else
|
|
|
|
#define STARTUP_VERBOSE 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if STARTUP_VERBOSE
|
|
|
|
#define PUTSTRING(...) putstring(__VA_ARGS__)
|
|
|
|
#define PUTHEX(...) puthex(__VA_ARGS__)
|
|
|
|
#define PUTBIN(...) putbin(__VA_ARGS__)
|
|
|
|
#define PUTCHAR(...) putchar(__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define PUTSTRING(...) do {} while(0)
|
|
|
|
#define PUTHEX(...) do {} while(0)
|
|
|
|
#define PUTBIN(...) do {} while(0)
|
|
|
|
#define PUTCHAR(...) do {} while(0)
|
|
|
|
#endif
|
|
|
|
|
2012-04-02 17:49:07 +02:00
|
|
|
#if CLOCK_CONF_STACK_FRIENDLY
|
2012-09-07 15:34:56 +02:00
|
|
|
extern volatile uint8_t sleep_flag;
|
2012-03-05 17:28:06 +01:00
|
|
|
#endif
|
|
|
|
|
2013-12-12 23:58:52 +01:00
|
|
|
extern linkaddr_t linkaddr_node_addr;
|
2012-03-05 17:28:06 +01:00
|
|
|
#if ENERGEST_CONF_ON
|
|
|
|
static unsigned long irq_energest = 0;
|
|
|
|
#define ENERGEST_IRQ_SAVE(a) do { \
|
|
|
|
a = energest_type_time(ENERGEST_TYPE_IRQ); } while(0)
|
|
|
|
#define ENERGEST_IRQ_RESTORE(a) do { \
|
|
|
|
energest_type_set(ENERGEST_TYPE_IRQ, a); } while(0)
|
|
|
|
#else
|
|
|
|
#define ENERGEST_IRQ_SAVE(a) do {} while(0)
|
|
|
|
#define ENERGEST_IRQ_RESTORE(a) do {} while(0)
|
|
|
|
#endif
|
2009-09-08 22:06:28 +02:00
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
2012-04-01 21:07:53 +02:00
|
|
|
fade(int l) CC_NON_BANKED
|
2009-09-08 22:06:28 +02:00
|
|
|
{
|
2012-03-05 17:28:06 +01:00
|
|
|
volatile int i, a;
|
2009-09-08 22:06:28 +02:00
|
|
|
int k, j;
|
|
|
|
for(k = 0; k < 400; ++k) {
|
2012-12-16 12:01:23 +01:00
|
|
|
j = k > 200 ? 400 - k : k;
|
2009-09-08 22:06:28 +02:00
|
|
|
|
|
|
|
leds_on(l);
|
|
|
|
for(i = 0; i < j; ++i) {
|
|
|
|
a = i;
|
|
|
|
}
|
|
|
|
leds_off(l);
|
|
|
|
for(i = 0; i < 200 - j; ++i) {
|
|
|
|
a = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
2012-04-01 21:07:53 +02:00
|
|
|
set_rime_addr(void) CC_NON_BANKED
|
2009-09-08 22:06:28 +02:00
|
|
|
{
|
2009-09-11 10:03:42 +02:00
|
|
|
uint8_t *addr_long = NULL;
|
|
|
|
uint16_t addr_short = 0;
|
2012-03-05 17:28:06 +01:00
|
|
|
char i;
|
2012-12-16 12:01:23 +01:00
|
|
|
__code unsigned char *macp;
|
2009-09-08 22:06:28 +02:00
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
PUTSTRING("Rime is 0x");
|
2013-12-12 23:58:52 +01:00
|
|
|
PUTHEX(sizeof(linkaddr_t));
|
2012-03-05 17:28:06 +01:00
|
|
|
PUTSTRING(" bytes long\n");
|
2009-09-08 22:06:28 +02:00
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
if(node_id == 0) {
|
|
|
|
PUTSTRING("Reading MAC from flash\n");
|
|
|
|
/*
|
|
|
|
* The MAC is always stored in 0x1FFF8 of our flash. This maps to address
|
|
|
|
* 0xFFF8 of our CODE segment, when BANK3 is selected.
|
|
|
|
* Switch to BANK3, read 8 bytes starting at 0xFFF8 and restore last BANK
|
|
|
|
* Since we are called from main(), this MUST be BANK1 or something is very
|
|
|
|
* wrong. This code can be used even without banking
|
|
|
|
*/
|
2009-09-08 22:06:28 +02:00
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
/* Don't interrupt us to make sure no BANK switching happens while working */
|
|
|
|
DISABLE_INTERRUPTS();
|
2009-09-08 22:06:28 +02:00
|
|
|
|
2012-04-01 21:45:27 +02:00
|
|
|
/* Switch to BANK3, map CODE: 0x8000 - 0xFFFF to FLASH: 0x18000 - 0x1FFFF */
|
2012-03-05 17:28:06 +01:00
|
|
|
FMAP = 3;
|
|
|
|
|
|
|
|
/* Set our pointer to the correct address and fetch 8 bytes of MAC */
|
2012-12-16 12:01:23 +01:00
|
|
|
macp = (__code unsigned char *)0xFFF8;
|
2012-03-05 17:28:06 +01:00
|
|
|
|
2013-12-12 23:58:52 +01:00
|
|
|
for(i = (LINKADDR_SIZE - 1); i >= 0; --i) {
|
|
|
|
linkaddr_node_addr.u8[i] = *macp;
|
2012-03-05 17:28:06 +01:00
|
|
|
macp++;
|
|
|
|
}
|
|
|
|
|
2012-04-01 21:45:27 +02:00
|
|
|
/* Remap 0x8000 - 0xFFFF to BANK1 */
|
2012-03-05 17:28:06 +01:00
|
|
|
FMAP = 1;
|
|
|
|
ENABLE_INTERRUPTS();
|
|
|
|
|
2009-09-08 22:06:28 +02:00
|
|
|
} else {
|
2012-03-05 17:28:06 +01:00
|
|
|
PUTSTRING("Setting manual address from node_id\n");
|
2013-12-12 23:58:52 +01:00
|
|
|
linkaddr_node_addr.u8[LINKADDR_SIZE - 1] = node_id >> 8;
|
|
|
|
linkaddr_node_addr.u8[LINKADDR_SIZE - 2] = node_id & 0xff;
|
2009-09-08 22:06:28 +02:00
|
|
|
}
|
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
/* Now the address is stored MSB first */
|
|
|
|
#if STARTUP_VERBOSE
|
|
|
|
PUTSTRING("Rime configured with address ");
|
2013-12-12 23:58:52 +01:00
|
|
|
for(i = 0; i < LINKADDR_SIZE - 1; i++) {
|
|
|
|
PUTHEX(linkaddr_node_addr.u8[i]);
|
2012-03-05 17:28:06 +01:00
|
|
|
PUTCHAR(':');
|
2009-09-08 22:06:28 +02:00
|
|
|
}
|
2013-12-12 23:58:52 +01:00
|
|
|
PUTHEX(linkaddr_node_addr.u8[i]);
|
2012-03-05 17:28:06 +01:00
|
|
|
PUTCHAR('\n');
|
|
|
|
#endif
|
2009-09-11 10:03:42 +02:00
|
|
|
|
|
|
|
/* Set the cc2430 RF addresses */
|
2013-12-12 23:58:52 +01:00
|
|
|
#if (LINKADDR_SIZE==8)
|
|
|
|
addr_short = (linkaddr_node_addr.u8[6] * 256) + linkaddr_node_addr.u8[7];
|
|
|
|
addr_long = (uint8_t *) &linkaddr_node_addr;
|
2012-03-05 17:28:06 +01:00
|
|
|
#else
|
2013-12-12 23:58:52 +01:00
|
|
|
addr_short = (linkaddr_node_addr.u8[0] * 256) + linkaddr_node_addr.u8[1];
|
2012-03-05 17:28:06 +01:00
|
|
|
#endif
|
|
|
|
cc2430_rf_set_addr(IEEE802154_PANID, addr_short, addr_long);
|
2009-09-08 22:06:28 +02:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* Hardware initialization */
|
|
|
|
bus_init();
|
2012-03-05 17:28:06 +01:00
|
|
|
rtimer_init();
|
|
|
|
|
2012-09-07 16:23:08 +02:00
|
|
|
stack_poison();
|
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
/* model-specific h/w init. */
|
|
|
|
model_init();
|
2009-09-08 22:06:28 +02:00
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
/* Init LEDs here */
|
2009-09-08 22:06:28 +02:00
|
|
|
leds_init();
|
|
|
|
fade(LEDS_GREEN);
|
|
|
|
|
|
|
|
/* initialize process manager. */
|
|
|
|
process_init();
|
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
/* Init UART1 */
|
|
|
|
uart1_init();
|
|
|
|
|
|
|
|
#if DMA_ON
|
|
|
|
dma_init();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SLIP_ARCH_CONF_ENABLE
|
|
|
|
/* On cc2430, the argument is not used */
|
|
|
|
slip_arch_init(0);
|
|
|
|
#else
|
|
|
|
uart1_set_input(serial_line_input_byte);
|
2009-09-08 22:06:28 +02:00
|
|
|
serial_line_init();
|
2012-03-05 17:28:06 +01:00
|
|
|
#endif
|
2009-09-08 22:06:28 +02:00
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
PUTSTRING("##########################################\n");
|
|
|
|
putstring(CONTIKI_VERSION_STRING "\n");
|
|
|
|
putstring(SENSINODE_MODEL " (CC24");
|
|
|
|
puthex(((CHIPID >> 3) | 0x20));
|
|
|
|
putstring("-" FLASH_SIZE ")\n");
|
2009-09-08 22:06:28 +02:00
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
#if STARTUP_VERBOSE
|
|
|
|
#ifdef HAVE_SDCC_BANKING
|
|
|
|
PUTSTRING(" With Banking.\n");
|
|
|
|
#endif /* HAVE_SDCC_BANKING */
|
|
|
|
#ifdef SDCC_MODEL_LARGE
|
|
|
|
PUTSTRING(" --model-large\n");
|
|
|
|
#endif /* SDCC_MODEL_LARGE */
|
|
|
|
#ifdef SDCC_MODEL_HUGE
|
|
|
|
PUTSTRING(" --model-huge\n");
|
|
|
|
#endif /* SDCC_MODEL_HUGE */
|
|
|
|
#ifdef SDCC_STACK_AUTO
|
|
|
|
PUTSTRING(" --stack-auto\n");
|
|
|
|
#endif /* SDCC_STACK_AUTO */
|
2009-09-08 22:06:28 +02:00
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
PUTCHAR('\n');
|
|
|
|
|
|
|
|
PUTSTRING(" Net: ");
|
|
|
|
PUTSTRING(NETSTACK_NETWORK.name);
|
|
|
|
PUTCHAR('\n');
|
|
|
|
PUTSTRING(" MAC: ");
|
|
|
|
PUTSTRING(NETSTACK_MAC.name);
|
|
|
|
PUTCHAR('\n');
|
|
|
|
PUTSTRING(" RDC: ");
|
|
|
|
PUTSTRING(NETSTACK_RDC.name);
|
|
|
|
PUTCHAR('\n');
|
|
|
|
|
|
|
|
PUTSTRING("##########################################\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
watchdog_init();
|
|
|
|
|
|
|
|
/* Initialise the cc2430 RNG engine. */
|
|
|
|
random_init(0);
|
2009-09-08 22:06:28 +02:00
|
|
|
|
|
|
|
/* start services */
|
|
|
|
process_start(&etimer_process, NULL);
|
2012-03-05 17:28:06 +01:00
|
|
|
ctimer_init();
|
|
|
|
|
|
|
|
/* initialize the netstack */
|
|
|
|
netstack_init();
|
|
|
|
set_rime_addr();
|
|
|
|
|
|
|
|
#if BUTTON_SENSOR_ON || ADC_SENSOR_ON
|
|
|
|
process_start(&sensors_process, NULL);
|
|
|
|
sensinode_sensors_activate();
|
|
|
|
#endif
|
|
|
|
|
2014-12-01 21:02:57 +01:00
|
|
|
#if NETSTACK_CONF_WITH_IPV6
|
2013-12-12 23:58:52 +01:00
|
|
|
memcpy(&uip_lladdr.addr, &linkaddr_node_addr, sizeof(uip_lladdr.addr));
|
2012-03-05 17:28:06 +01:00
|
|
|
queuebuf_init();
|
|
|
|
process_start(&tcpip_process, NULL);
|
|
|
|
|
|
|
|
#if DISCO_ENABLED
|
|
|
|
process_start(&disco_process, NULL);
|
|
|
|
#endif /* DISCO_ENABLED */
|
|
|
|
|
|
|
|
#if VIZTOOL_CONF_ON
|
|
|
|
process_start(&viztool_process, NULL);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (!UIP_CONF_IPV6_RPL)
|
|
|
|
{
|
|
|
|
uip_ipaddr_t ipaddr;
|
|
|
|
|
|
|
|
uip_ip6addr(&ipaddr, 0x2001, 0x630, 0x301, 0x6453, 0, 0, 0, 0);
|
|
|
|
uip_ds6_set_addr_iid(&ipaddr, &uip_lladdr);
|
|
|
|
uip_ds6_addr_add(&ipaddr, 0, ADDR_TENTATIVE);
|
|
|
|
}
|
|
|
|
#endif /* UIP_CONF_IPV6_RPL */
|
2014-12-01 21:02:57 +01:00
|
|
|
#endif /* NETSTACK_CONF_WITH_IPV6 */
|
2012-03-05 17:28:06 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Acknowledge the UART1 RX interrupt
|
|
|
|
* now that we're sure we are ready to process it
|
|
|
|
*/
|
|
|
|
model_uart_intr_en();
|
|
|
|
|
|
|
|
energest_init();
|
|
|
|
ENERGEST_ON(ENERGEST_TYPE_CPU);
|
2009-09-08 22:06:28 +02:00
|
|
|
|
|
|
|
fade(LEDS_RED);
|
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
#if BATMON_CONF_ON
|
|
|
|
process_start(&batmon_process, NULL);
|
|
|
|
#endif
|
|
|
|
|
2009-09-08 22:06:28 +02:00
|
|
|
autostart_start(autostart_processes);
|
|
|
|
|
2012-03-05 17:28:06 +01:00
|
|
|
watchdog_start();
|
|
|
|
|
2009-09-08 22:06:28 +02:00
|
|
|
while(1) {
|
2012-09-07 15:38:49 +02:00
|
|
|
uint8_t r;
|
2012-03-05 17:28:06 +01:00
|
|
|
do {
|
|
|
|
/* Reset watchdog and handle polls and events */
|
|
|
|
watchdog_periodic();
|
|
|
|
|
2012-04-02 17:49:07 +02:00
|
|
|
#if CLOCK_CONF_STACK_FRIENDLY
|
2012-03-05 17:28:06 +01:00
|
|
|
if(sleep_flag) {
|
|
|
|
if(etimer_pending() &&
|
2012-04-02 17:49:07 +02:00
|
|
|
(etimer_next_expiration_time() - clock_time() - 1) > MAX_TICKS) {
|
2012-03-05 17:28:06 +01:00
|
|
|
etimer_request_poll();
|
|
|
|
}
|
|
|
|
sleep_flag = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
r = process_run();
|
|
|
|
} while(r > 0);
|
2012-04-01 22:43:22 +02:00
|
|
|
#if NETSTACK_CONF_SHORTCUTS
|
2012-03-05 17:28:06 +01:00
|
|
|
len = NETSTACK_RADIO.pending_packet();
|
|
|
|
if(len) {
|
|
|
|
packetbuf_clear();
|
|
|
|
len = NETSTACK_RADIO.read(packetbuf_dataptr(), PACKETBUF_SIZE);
|
|
|
|
if(len > 0) {
|
|
|
|
packetbuf_set_datalen(len);
|
|
|
|
NETSTACK_RDC.input();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LPM_MODE
|
|
|
|
#if (LPM_MODE==LPM_MODE_PM2)
|
|
|
|
SLEEP &= ~OSC_PD; /* Make sure both HS OSCs are on */
|
|
|
|
while(!(SLEEP & HFRC_STB)); /* Wait for RCOSC to be stable */
|
|
|
|
CLKCON |= OSC; /* Switch to the RCOSC */
|
|
|
|
while(!(CLKCON & OSC)); /* Wait till it's happened */
|
|
|
|
SLEEP |= OSC_PD; /* Turn the other one off */
|
|
|
|
#endif /* LPM_MODE==LPM_MODE_PM2 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set MCU IDLE or Drop to PM1. Any interrupt will take us out of LPM
|
|
|
|
* Sleep Timer will wake us up in no more than 7.8ms (max idle interval)
|
|
|
|
*/
|
|
|
|
SLEEP = (SLEEP & 0xFC) | (LPM_MODE - 1);
|
|
|
|
|
|
|
|
#if (LPM_MODE==LPM_MODE_PM2)
|
|
|
|
/*
|
|
|
|
* Wait 3 NOPs. Either an interrupt occurred and SLEEP.MODE was cleared or
|
|
|
|
* no interrupt occurred and we can safely power down
|
|
|
|
*/
|
|
|
|
__asm
|
|
|
|
nop
|
|
|
|
nop
|
|
|
|
nop
|
|
|
|
__endasm;
|
|
|
|
|
2012-12-16 12:01:23 +01:00
|
|
|
if(SLEEP & SLEEP_MODE0) {
|
2012-03-05 17:28:06 +01:00
|
|
|
#endif /* LPM_MODE==LPM_MODE_PM2 */
|
|
|
|
|
|
|
|
ENERGEST_OFF(ENERGEST_TYPE_CPU);
|
|
|
|
ENERGEST_ON(ENERGEST_TYPE_LPM);
|
|
|
|
|
|
|
|
/* We are only interested in IRQ energest while idle or in LPM */
|
|
|
|
ENERGEST_IRQ_RESTORE(irq_energest);
|
|
|
|
|
|
|
|
/* Go IDLE or Enter PM1 */
|
|
|
|
PCON |= IDLE;
|
|
|
|
|
|
|
|
/* First instruction upon exiting PM1 must be a NOP */
|
|
|
|
__asm
|
|
|
|
nop
|
|
|
|
__endasm;
|
|
|
|
|
|
|
|
/* Remember energest IRQ for next pass */
|
|
|
|
ENERGEST_IRQ_SAVE(irq_energest);
|
|
|
|
|
|
|
|
ENERGEST_ON(ENERGEST_TYPE_CPU);
|
|
|
|
ENERGEST_OFF(ENERGEST_TYPE_LPM);
|
|
|
|
|
|
|
|
#if (LPM_MODE==LPM_MODE_PM2)
|
|
|
|
SLEEP &= ~OSC_PD; /* Make sure both HS OSCs are on */
|
|
|
|
while(!(SLEEP & XOSC_STB)); /* Wait for XOSC to be stable */
|
|
|
|
CLKCON &= ~OSC; /* Switch to the XOSC */
|
|
|
|
/*
|
|
|
|
* On occasion the XOSC is reported stable when in reality it's not.
|
|
|
|
* We need to wait for a safeguard of 64us or more before selecting it
|
|
|
|
*/
|
2012-04-30 14:30:34 +02:00
|
|
|
clock_delay_usec(65);
|
2012-03-05 17:28:06 +01:00
|
|
|
while(CLKCON & OSC); /* Wait till it's happened */
|
|
|
|
}
|
|
|
|
#endif /* LPM_MODE==LPM_MODE_PM2 */
|
|
|
|
#endif /* LPM_MODE */
|
2009-09-08 22:06:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|