Purge 'boolean' type, use 'bool' instead
This commit is contained in:
@@ -229,7 +229,7 @@ void loop(void)
|
||||
if ( radio.available() )
|
||||
{
|
||||
// Dump the payloads until we've gotten everything
|
||||
boolean done = false;
|
||||
bool done = false;
|
||||
while (!done)
|
||||
{
|
||||
// Fetch the payload, and see if this was the last one.
|
||||
|
||||
@@ -192,7 +192,7 @@ void loop(void)
|
||||
{
|
||||
// Dump the payloads until we've gotten everything
|
||||
unsigned long got_time;
|
||||
boolean done = false;
|
||||
bool done = false;
|
||||
while (!done)
|
||||
{
|
||||
// Fetch the payload, and see if this was the last one.
|
||||
|
||||
@@ -209,7 +209,7 @@ void loop(void)
|
||||
{
|
||||
// Dump the payloads until we've gotten everything
|
||||
uint8_t len;
|
||||
boolean done = false;
|
||||
bool done = false;
|
||||
while (!done)
|
||||
{
|
||||
// Fetch the payload, and see if this was the last one.
|
||||
|
||||
@@ -160,7 +160,7 @@ void loop(void)
|
||||
{
|
||||
// Dump the payloads until we've gotten everything
|
||||
static unsigned long got_time;
|
||||
boolean done = false;
|
||||
bool done = false;
|
||||
while (!done)
|
||||
{
|
||||
// Fetch the payload, and see if this was the last one.
|
||||
|
||||
@@ -227,7 +227,7 @@ void loop(void)
|
||||
{
|
||||
// Dump the payloads until we've gotten everything
|
||||
unsigned long got_time;
|
||||
boolean done = false;
|
||||
bool done = false;
|
||||
while (!done)
|
||||
{
|
||||
// Fetch the payload, and see if this was the last one.
|
||||
|
||||
@@ -244,7 +244,7 @@ void loop(void)
|
||||
{
|
||||
// Dump the payloads until we've gotten everything
|
||||
unsigned long got_time;
|
||||
boolean done = false;
|
||||
bool done = false;
|
||||
while (!done)
|
||||
{
|
||||
// Fetch the payload, and see if this was the last one.
|
||||
|
||||
Reference in New Issue
Block a user