From 877646a08da9b627657b0853d0cf6a54897c3ae2 Mon Sep 17 00:00:00 2001 From: Abdoulaye Walsimou Gaye Date: Sat, 28 Mar 2009 15:23:24 +0100 Subject: make DEVICE and PIC16_LIB_PATH variables in PIC18_SDCC/Makefile to be simply expanded variables --- Demo/PIC18_SDCC/Makefile | 8 ++++---- Demo/PIC18_SDCC/main.c | 2 +- 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) -- cgit v1.2.3