summaryrefslogtreecommitdiff
path: root/openpicc/config
diff options
context:
space:
mode:
authorhenryk <henryk@6dc7ffe9-61d6-0310-9af1-9938baff3ed1>2007-11-21 04:45:15 +0000
committerhenryk <henryk@6dc7ffe9-61d6-0310-9af1-9938baff3ed1>2007-11-21 04:45:15 +0000
commit616746c2e01a0425a9fc62d24153d88079f0daac (patch)
tree8eb82b0af16890ab4bd249d7091f655a976dbfc9 /openpicc/config
parent5cc0ed498f99d3b23c6f1b87a9a2fdcbb05dd1a9 (diff)
Commit status quo: Start adding iso 14443 layer 3a code
Currently working on fiq for pio data change to reset tc0 via swtrg git-svn-id: https://svn.openpcd.org:2342/trunk@336 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
Diffstat (limited to 'openpicc/config')
-rw-r--r--openpicc/config/atmel-rom.ld2
-rw-r--r--openpicc/config/board.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/openpicc/config/atmel-rom.ld b/openpicc/config/atmel-rom.ld
index 0a9a04d..8ea6c68 100644
--- a/openpicc/config/atmel-rom.ld
+++ b/openpicc/config/atmel-rom.ld
@@ -1,7 +1,7 @@
MEMORY
{
flash : ORIGIN = 0x00100000, LENGTH = 256K - 1K /* save 1K for environment on top of flash */
- ram : ORIGIN = 0x00200000, LENGTH = 64K
+ ram : ORIGIN = 0x00200028, LENGTH = 64K-28
}
__stack_end__ = 0x00200000 + 64K - 4;
diff --git a/openpicc/config/board.h b/openpicc/config/board.h
index c2f0e2e..18cfe9e 100644
--- a/openpicc/config/board.h
+++ b/openpicc/config/board.h
@@ -95,6 +95,9 @@
#define TASK_USB_PRIORITY ( tskIDLE_PRIORITY + 2 )
#define TASK_USB_STACK ( 512 )
+#define TASK_ISO_PRIORITY ( tskIDLE_PRIORITY + 3 )
+#define TASK_ISO_STACK ( 512 )
+
#define TASK_NRF_PRIORITY ( tskIDLE_PRIORITY + 3 )
#define TASK_NRF_STACK ( 512 )
personal git repositories of Harald Welte. Your mileage may vary