summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-03-28 15:23:24 +0100
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-03-28 15:23:24 +0100
commit877646a08da9b627657b0853d0cf6a54897c3ae2 (patch)
treec3c1b4236e173caf2d5c42ba1ae26c6cd32531a9
parentcf03eff205efcadba67c1e9c7fef734001b83a7d (diff)
downloadfreertos-877646a08da9b627657b0853d0cf6a54897c3ae2.tar.gz
freertos-877646a08da9b627657b0853d0cf6a54897c3ae2.tar.bz2
freertos-877646a08da9b627657b0853d0cf6a54897c3ae2.tar.xz
make DEVICE and PIC16_LIB_PATH variables in PIC18_SDCC/Makefile to be simply expanded variables
-rw-r--r--Demo/PIC18_SDCC/Makefile8
-rw-r--r--Demo/PIC18_SDCC/main.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/Demo/PIC18_SDCC/Makefile b/Demo/PIC18_SDCC/Makefile
index 0c278815..9e461150 100644
--- a/Demo/PIC18_SDCC/Makefile
+++ b/Demo/PIC18_SDCC/Makefile
@@ -28,16 +28,16 @@ LD=gplink
#Device selection
ifeq ($(DEVICE),)
-DEVICE=18f452
+DEVICE:=18f452
else
-DEVICE=$(DEVICE)
+DEVICE:=$(DEVICE)
endif
#SDCC pic16 libraries
ifeq ($(PIC16_LIB_PATH),)
-PIC16_LIB_PATH=/usr/local/share/sdcc/lib/pic16
+PIC16_LIB_PATH:=/usr/local/share/sdcc/lib/pic16
else
-PIC16_LIB_PATH=$(PIC16_LIB_PATH)
+PIC16_LIB_PATH:=$(PIC16_LIB_PATH)
endif
#type of pic used
diff --git a/Demo/PIC18_SDCC/main.c b/Demo/PIC18_SDCC/main.c
index 3c64ec68..0541bc8c 100644
--- a/Demo/PIC18_SDCC/main.c
+++ b/Demo/PIC18_SDCC/main.c
@@ -92,7 +92,7 @@ void prvtask3_func(void* pvparam)
portENTER_CRITICAL();
LED3_PORT=LED3_PORT^1;
portEXIT_CRITICAL();
- vTaskDelay(10);
+ vTaskDelay(20);
}
}
void panic (void)