mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-05 03:24:05 +02:00
fw3/: remove probably useless RF debug output code from board.c
- board.h, board.c: removed rf_init, rf_send, and "wr"
This commit is contained in:
parent
f9f0d16f6e
commit
10fb0146c3
@ -101,39 +101,3 @@ void board_init(void)
|
||||
OUT(nRST_RF); /* resets the transceiver */
|
||||
OUT(SLP_TR);
|
||||
}
|
||||
|
||||
|
||||
static void wr(uint8_t reg, uint8_t val)
|
||||
{
|
||||
spi_begin();
|
||||
spi_send(AT86RF230_REG_WRITE | reg);
|
||||
spi_send(val);
|
||||
spi_end();
|
||||
}
|
||||
|
||||
|
||||
void rf_init(void)
|
||||
{
|
||||
wr(REG_TRX_STATE, TRX_CMD_TRX_OFF);
|
||||
wr(REG_IRQ_MASK, 0xff);
|
||||
_delay_us(50);
|
||||
}
|
||||
|
||||
|
||||
void rf_send(const char *s)
|
||||
{
|
||||
const char *p;
|
||||
int len = 0;
|
||||
|
||||
wr(REG_TRX_STATE, TRX_CMD_PLL_ON);
|
||||
for (p = s; *p; p++)
|
||||
len++;
|
||||
spi_begin();
|
||||
spi_send(AT86RF230_BUF_WRITE);
|
||||
spi_send(len);
|
||||
while (*s)
|
||||
spi_send(*s++);
|
||||
spi_end();
|
||||
wr(REG_TRX_STATE, TRX_CMD_TX_START);
|
||||
_delay_ms(10);
|
||||
}
|
||||
|
@ -61,7 +61,4 @@ void led(int on);
|
||||
void panic(void);
|
||||
void board_init(void);
|
||||
|
||||
void rf_init(void);
|
||||
void rf_send(const char *s);
|
||||
|
||||
#endif /* !BOARD_H */
|
||||
|
Loading…
Reference in New Issue
Block a user