Merge pull request #646 from BytesGalore/fix_tranceiver_pid_for_cc110x_ng

fix to use only transceiver_pid from transceiver.c
This commit is contained in:
Oleg Hahm 2014-02-11 17:09:24 +01:00
commit 41f7ab8c91
2 changed files with 1 additions and 3 deletions

View File

@ -40,8 +40,6 @@ volatile uint8_t radio_state = RADIO_UNKNOWN; ///< Radio state
static radio_address_t radio_address; ///< Radio address static radio_address_t radio_address; ///< Radio address
static uint8_t radio_channel; ///< Radio channel static uint8_t radio_channel; ///< Radio channel
int transceiver_pid; ///< the transceiver thread pid
/* internal function prototypes */ /* internal function prototypes */
static int rd_set_mode(int mode); static int rd_set_mode(int mode);
static void reset(void); static void reset(void);

View File

@ -115,7 +115,7 @@ extern volatile uint8_t rx_buffer_next; ///< Next packet in RX queue
extern volatile uint8_t radio_state; ///< Radio state extern volatile uint8_t radio_state; ///< Radio state
extern cc110x_statistic_t cc110x_statistic; extern cc110x_statistic_t cc110x_statistic;
int transceiver_pid; ///< the transceiver thread pid extern int transceiver_pid; ///< the transceiver thread pid
void cc110x_init(int transceiver_pid); void cc110x_init(int transceiver_pid);