|
|
|
@ -147,15 +147,15 @@ void etx_init_beaconing(ipv6_addr_t *address)
|
|
|
|
|
DEBUGF("ETX BEACON INIT");
|
|
|
|
|
etx_send_buf[0] = ETX_PKT_OPTVAL;
|
|
|
|
|
|
|
|
|
|
etx_beacon_pid = thread_create(etx_beacon_buf, ETX_BEACON_STACKSIZE,
|
|
|
|
|
etx_beacon_pid = thread_create(etx_beacon_buf, sizeof(etx_beacon_buf),
|
|
|
|
|
PRIORITY_MAIN - 1, CREATE_STACKTEST,
|
|
|
|
|
etx_beacon, NULL, "etx_beacon");
|
|
|
|
|
|
|
|
|
|
etx_radio_pid = thread_create(etx_radio_buf, ETX_RADIO_STACKSIZE,
|
|
|
|
|
etx_radio_pid = thread_create(etx_radio_buf, sizeof(etx_radio_buf),
|
|
|
|
|
PRIORITY_MAIN - 1, CREATE_STACKTEST,
|
|
|
|
|
etx_radio, NULL, "etx_radio");
|
|
|
|
|
|
|
|
|
|
etx_clock_pid = thread_create(etx_clock_buf, ETX_CLOCK_STACKSIZE,
|
|
|
|
|
etx_clock_pid = thread_create(etx_clock_buf, sizeof(etx_clock_buf),
|
|
|
|
|
PRIORITY_MAIN - 1, CREATE_STACKTEST,
|
|
|
|
|
etx_clock, NULL, "etx_clock");
|
|
|
|
|
//register at transceiver
|
|
|
|
|