Enabled warnings, and cleaned up warnings. Updated pingpair makefile for recent makefile improvements

This commit is contained in:
maniacbug
2011-04-24 11:34:05 -07:00
parent 5b632f3740
commit e188242a86
7 changed files with 15 additions and 10 deletions

View File

@@ -139,8 +139,8 @@ CXXINCS = -I$(ARDUINO_CORE) -I$(ARDUINO_LIB)
#CSTANDARD = -std=gnu99
CDEBUG = -g$(DEBUG)
#CWARN = -Wall -Wstrict-prototypes
#CWARN = -Wall # show all warnings
CWARN = -w # suppress all warnings
CWARN = -Wall # show all warnings
#CWARN = -w # suppress all warnings
CMAP = -Wl,-Map,output.map
####CTUNING = -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
CTUNING = -ffunction-sections -fdata-sections
@@ -198,6 +198,7 @@ build: elf hex
output/$(PROJECT_NAME).cpp: $(PROJECT_NAME).pde
test -d output || mkdir output
echo "#include <WProgram.h>" > $@
echo "#line 1 \"$<\"" >> $@
cat $< >> $@
elf: output/$(PROJECT_NAME).elf

View File

@@ -29,7 +29,7 @@
RF24 radio(8,9);
// sets the role of this unit in hardware. Connect to GND to be the 'pong' receiver
// Leave open to be the 'pong' receiver.
// Leave open to be the 'ping' transmitter
const int role_pin = 7;
//
@@ -137,7 +137,7 @@ void loop(void)
// Take the time, and send it. This will block until complete
unsigned long time = millis();
printf("Now sending %lu...",time);
bool ok = radio.write( &time, sizeof(unsigned long) );
radio.write( &time, sizeof(unsigned long) );
// Now, continue listening
radio.startListening();

View File

@@ -21,6 +21,8 @@
int serial_putc( char c, FILE *t )
{
Serial.write( c );
return c;
}
void printf_begin(void)

View File

@@ -140,8 +140,8 @@ CXXINCS = -I$(ARDUINO_CORE) -I$(ARDUINO_LIB)
#CSTANDARD = -std=gnu99
CDEBUG = -g$(DEBUG)
#CWARN = -Wall -Wstrict-prototypes
#CWARN = -Wall # show all warnings
CWARN = -w # suppress all warnings
CWARN = -Wall # show all warnings
#CWARN = -w # suppress all warnings
CMAP = -Wl,-Map,output.map
####CTUNING = -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
CTUNING = -ffunction-sections -fdata-sections

View File

@@ -21,6 +21,8 @@
int serial_putc( char c, FILE *t )
{
Serial.write( c );
return c;
}
void printf_begin(void)

View File

@@ -201,7 +201,7 @@ void loop(void)
// Take the time, and send it. This will block until complete
unsigned long time = millis();
printf("Now sending %lu...",time);
bool ok = radio.write( &time, sizeof(unsigned long) );
radio.write( &time, sizeof(unsigned long) );
// Now, continue listening
radio.startListening();