Purge 'boolean' type, use 'bool' instead

This commit is contained in:
maniacbug
2011-07-10 08:22:30 -07:00
parent ccf32891f0
commit 42bf3e8cd2
9 changed files with 23 additions and 22 deletions

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.