mc1322x: disable broken maca calls for now.

maca_on, maca_off, and contiki_maca_init don't work correctly;
they mess up address filtering.

disable them for now and fix them later.
This commit is contained in:
Mariano Alvira 2011-02-18 13:25:53 -05:00
parent e826ccd3b9
commit 535b9d35d7

View file

@ -98,11 +98,11 @@ static process_event_t event_data_ready;
static volatile packet_t prepped_p; static volatile packet_t prepped_p;
int contiki_maca_init(void) { int contiki_maca_init(void) {
trim_xtal(); // trim_xtal();
vreg_init(); // vreg_init();
contiki_maca_init(); // contiki_maca_init();
set_channel(0); /* channel 11 */ // set_channel(0); /* channel 11 */
set_power(0x12); /* 0x12 is the highest, not documented */ // set_power(0x12); /* 0x12 is the highest, not documented */
return 1; return 1;
} }
@ -254,12 +254,12 @@ PROCESS_THREAD(contiki_maca_process, ev, data)
/* check if there is a request to turn the radio on or off */ /* check if there is a request to turn the radio on or off */
if(contiki_maca_request_on == 1) { if(contiki_maca_request_on == 1) {
contiki_maca_request_on = 0; contiki_maca_request_on = 0;
maca_on(); // maca_on();
} }
if(contiki_maca_request_off == 1) { if(contiki_maca_request_off == 1) {
contiki_maca_request_off = 0; contiki_maca_request_off = 0;
maca_off(); // maca_off();
} }
if (rx_head != NULL) { if (rx_head != NULL) {