summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-04-20 13:48:51 +0200
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-04-20 13:48:51 +0200
commite689d5d217d3ccb259700047bf0f9bafcad1417d (patch)
treebce06396e3fcaf3c71d37b7c0243e60cb02142be
parent0ea7d9758ff7b64e2bca1509f0ddcdf19a73a75f (diff)
downloadfreertos-e689d5d217d3ccb259700047bf0f9bafcad1417d.tar.gz
freertos-e689d5d217d3ccb259700047bf0f9bafcad1417d.tar.bz2
freertos-e689d5d217d3ccb259700047bf0f9bafcad1417d.tar.xz
PIC18_SDCC: Document supported devices
This patch document supported devices in README Signed-off-by: Abdoulaye Walsimou Gaye <walsimou@walsimou.com>
-rw-r--r--Demo/PIC18_SDCC/README11
1 files changed, 5 insertions, 6 deletions
diff --git a/Demo/PIC18_SDCC/README b/Demo/PIC18_SDCC/README
index 34a64627..7f62ab6b 100644
--- a/Demo/PIC18_SDCC/README
+++ b/Demo/PIC18_SDCC/README
@@ -29,7 +29,7 @@ as Kernel, SDCC/GPUTILS as development tools, and a Microchip PIC18 device as MC
Both SDCC and GPUTILS run natively under GNU/Linux distributions, but can also run
under BSD distrubutions and under Windows (in this case you need cygwin).
Supported devices are theoretically all PIC18 supported by SDCC and GPUTILS together,
-something about 99 devices (see SDCC and GPUTILS website and documentation). But the
+something about 59 devices (see SDCC and GPUTILS website and documentation). But the
porting task is done with pic18f452 MCU and gpsim as simulator.
FreeRTOS: Realtime kernel
@@ -108,11 +108,10 @@ To compile another demo application, instead of the default (main.c), just type:
where alternate_main.c indicates another existing main file.
NOTES:
-At this moment of writing you can compile demo application for the following devices:
-18f4520, 18f452, 18f4580, 18f97j60.
-Other supported devices can be used but you need to their linker script.
+At this moment of writing you can compile demo application for the following all devices
+that have a script in FreeRTOS/Demo/PIC18_SDCC/lkr subdirectory.
By default, when you compile a demo application, you compile it for pic18f452. To use
-another just type:
+another device just type:
#make DEVICE=alternate_device
@@ -120,7 +119,7 @@ or:
#make DEVICE=alternate_device MAINFILE=alternate_main.c
-Where alternate_device is 18f4520 or 18f4580 or 18f97j60
+Where alternate_device is the device you want (i.e 18f87j60 or 18f4580)
II-2 Simulating