]> git.sur5r.net Git - freertos/commitdiff
Updated for use with latest Yagarto release.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 28 Sep 2009 17:15:51 +0000 (17:15 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 28 Sep 2009 17:15:51 +0000 (17:15 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@857 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/ARM7_AT91FR40008_GCC/Makefile
Demo/ARM7_AT91FR40008_GCC/serial/serial.c

index 5807dd9fe08002bf0ff04678404ca4028c92b57f..da69cd1a4b4cc0cd3620ff2838736cdc7b239dcb 100644 (file)
@@ -53,9 +53,10 @@ CRT0=boot.s
 #\r
 # CFLAGS common to both the THUMB and ARM mode builds\r
 #\r
-CFLAGS=-Wall -D $(RUN_MODE) -D GCC_AT91FR40008 -I. -I../../Source/include \\r
+CFLAGS=-Wall -Wextra -D $(RUN_MODE) -D GCC_AT91FR40008 -I. -I../../Source/include \\r
                -I../Common/include $(DEBUG) -mcpu=arm7tdmi -T$(LDSCRIPT) \\r
-               -Wcast-align $(OPTIM) -fomit-frame-pointer -fno-strict-aliasing\r
+               -Wcast-align $(OPTIM) -fomit-frame-pointer -fno-strict-aliasing \\r
+               -fno-dwarf2-cfi-asm\r
 \r
 ifeq ($(USE_THUMB_MODE),YES)\r
        CFLAGS += -mthumb-interwork -D THUMB_INTERWORK\r
@@ -113,4 +114,6 @@ $(ARM_OBJ) : %.o : %.c $(LDSCRIPT) Makefile
 \r
 clean :\r
        touch Makefile\r
+       rm $(ARM_OBJ)\r
+       rm $(THUMB_OBJ)\r
 \r
index 39aae0fff51817be3df867a57a912c3c37fa7d0c..2940f6edba895244c2705dc8fb278aac2c28f421 100644 (file)
@@ -206,6 +206,7 @@ signed portCHAR *pxNext;
 \r
        /* The port handle is not required as this driver only supports UART0. */\r
        ( void ) pxPort;\r
+       ( void ) usStringLength;\r
 \r
        /* Send each character in the string, one at a time. */\r
        pxNext = ( signed portCHAR * ) pcString;\r
@@ -219,6 +220,8 @@ signed portCHAR *pxNext;
 \r
 signed portBASE_TYPE xSerialPutChar( xComPortHandle pxPort, signed portCHAR cOutChar, portTickType xBlockTime )\r
 {\r
+       ( void ) pxPort;\r
+\r
        /* Place the character in the queue of characters to be transmitted. */\r
        if( xQueueSend( xCharsForTx, &cOutChar, xBlockTime ) != pdPASS )\r
        {\r
@@ -238,6 +241,7 @@ signed portBASE_TYPE xSerialPutChar( xComPortHandle pxPort, signed portCHAR cOut
 void vSerialClose( xComPortHandle xPort )\r
 {\r
        /* Not supported as not required by the demo application. */\r
+       ( void ) xPort;\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r