Skip to content

Commit

Permalink
fixed includes for at86rf231
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegHahm committed Feb 20, 2014
1 parent 7cd7d23 commit cb771e6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions drivers/at86rf231/at86rf231.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
*/

#include "at86rf231.h"
#include "at86rf231_arch.h"
#include "at86rf231_spi.h"

#define ENABLE_DEBUG (0)
#include "debug.h"
Expand Down
1 change: 1 addition & 0 deletions drivers/at86rf231/at86rf231_rx.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

#include "at86rf231.h"
#include "at86rf231_arch.h"
#include "at86rf231_spi.h"

#include "transceiver.h"
#include "msg.h"
Expand Down
1 change: 1 addition & 0 deletions drivers/at86rf231/at86rf231_tx.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "at86rf231.h"
#include "at86rf231_arch.h"
#include "at86rf231_spi.h"

static void at86rf231_xmit(uint8_t *data, uint8_t length);
static void at86rf231_gen_pkt(uint8_t *buf, at86rf231_packet_t *packet);
Expand Down
1 change: 1 addition & 0 deletions drivers/at86rf231/include/at86rf231_arch.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ void at86rf231_switch_to_rx(void);
void at86rf231_spi_select(void);
void at86rf231_spi_unselect(void);

void at86rf231_spi_transfer(const uint8_t *data_out, uint8_t *data_in, uint16_t length);
uint8_t at86rf231_spi_transfer_byte(uint8_t byte);

void at86rf231_init_interrupts(void);
Expand Down
1 change: 0 additions & 1 deletion drivers/at86rf231/include/at86rf231_spi.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ void at86rf231_reg_write(uint8_t addr, uint8_t value);

void at86rf231_read_fifo(uint8_t *data, uint8_t length);
void at86rf231_write_fifo(const uint8_t *data, uint8_t length);

#endif

0 comments on commit cb771e6

Please sign in to comment.