summaryrefslogtreecommitdiff
path: root/openpicc/config
diff options
context:
space:
mode:
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