Remove commented RFFC5071 code in set_transceiver_mode.

This commit is contained in:
Jared Boone
2013-09-08 15:36:25 -07:00
parent d00123ed24
commit 98e33fbb5b

View File

@ -210,7 +210,6 @@ void set_transceiver_mode(const transceiver_mode_t new_transceiver_mode) {
usb_endpoint_init(&usb_endpoint_bulk_in);
rf_path_set_direction(RF_PATH_DIRECTION_RX);
//rffc5071_set_frequency(1700, 0); // 2600 MHz IF - 1700 MHz LO = 900 MHz RF
max2837_start();
max2837_rx();
} else if (transceiver_mode == TRANSCEIVER_MODE_TX) {
@ -219,7 +218,6 @@ void set_transceiver_mode(const transceiver_mode_t new_transceiver_mode) {
usb_endpoint_init(&usb_endpoint_bulk_out);
rf_path_set_direction(RF_PATH_DIRECTION_TX);
//rffc5071_set_frequency(1700, 0); // 2600 MHz IF - 1700 MHz LO = 900 MHz RF
max2837_start();
max2837_tx();
} else {