Skip to content

Commit

Permalink
fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TMRh20 committed Sep 19, 2014
1 parent 0d69e00 commit bf287d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions RPi/RF24Network/RF24Network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ uint32_t nFails = 0, nOK=0;

/******************************************************************/

RF24Network::RF24Network( RF24& _radio ): radio(_radio), frame_size(MAX_FRAME_SIZE), lastMultiMessageID(0), noListen(1), lastWriteTime(0)
RF24Network::RF24Network( RF24& _radio ): radio(_radio), frame_size(MAX_FRAME_SIZE)
{}

/******************************************************************/
Expand Down Expand Up @@ -371,7 +371,7 @@ bool RF24Network::multicast(RF24NetworkHeader& header,const void* message, size_
header.from_node = node_address;

// Build the full frame to send
RF24NetworkFrame frame = RF24NetworkFrame(header,message,std::min(sizeof(message),len));
//RF24NetworkFrame frame = RF24NetworkFrame(header,message,std::min(sizeof(message),len));

IF_SERIAL_DEBUG(printf_P(PSTR("%u: NET Sending %s\n\r"),millis(),header.toString()));
if (len) {
Expand Down
1 change: 0 additions & 1 deletion RPi/RF24Network/RF24Network.h
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,6 @@ uint16_t addressOfPipe( uint16_t node,uint8_t pipeNo );
uint8_t parent_pipe; /**< The pipe our parent uses to listen to us */
uint16_t node_mask; /**< The bits which contain signfificant node address information */

uint16_t lastMultiMessageID; //FIXME
bool noListen; //FIXME
uint32_t lastWriteTime; //FIXME

Expand Down

0 comments on commit bf287d6

Please sign in to comment.