Skip to content

Commit

Permalink
Fix mistake in new code
Browse files Browse the repository at this point in the history
All I can say is it compiled in IDE 1.5.7...
  • Loading branch information
TMRh20 committed Sep 17, 2014
1 parent f5341bf commit d3e5c4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RF24.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ class RF24
bool dynamic_payloads_enabled; /**< Whether dynamic payloads are enabled. */
uint8_t pipe0_reading_address[5]; /**< Last address set on pipe 0 for reading. */
uint8_t addr_width; /**< The address width to use - 3,4 or 5 bytes. */
uint32_t lastAvailableCheck = 0; /**< Limits the amount of time betwen reading data, only when switching between modes */
boolean listeningStarted = 1; /**< Var for delaying available() after start listening */
uint32_t lastAvailableCheck; /**< Limits the amount of time between reading data, only when switching between modes */
boolean listeningStarted; /**< Var for delaying available() after start listening */

public:

Expand Down

1 comment on commit d3e5c4e

@TMRh20
Copy link
Member Author

@TMRh20 TMRh20 commented on d3e5c4e Sep 17, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Found by Zarya - issue #20

Please sign in to comment.