\r
/* \r
* The below define should be same as the option selected by the Memory \r
- * Model (Project->Setup Project->C Compiler->Catagory->Target Depend ) \r
+ * Model (Project->Setup Project->C Compiler->Category->Target Depend ) \r
*\r
* Valid settings here include:\r
- * portSMALL 16 Bit 16 Bit\r
- * portMEDIUM 16 Bit 24 Bit\r
- * portCOMPACT 24 Bit 16 Bit\r
- * portLARGE 24 Bit 24 Bit\r
+ * ------- Memory models --------- Data Code\r
+ * portSMALL 16 Bit 16 Bit\r
+ * portMEDIUM 16 Bit 24 Bit\r
+ * portCOMPACT 24 Bit 16 Bit\r
+ * portLARGE 24 Bit 24 Bit\r
*/\r
#define configMEMMODEL portMEDIUM\r
\r
-\r
+/* Demo specific definition - set this to 1 if you want to include the task\r
+that writes trace and debug information to the UART. This cannot be used\r
+when running the application using the EUROScope debugger. */\r
+#define INCLUDE_TraceListTasks 0\r
\r
/*-----------------------------------------------------------\r
* Application specific definitions.\r
*----------------------------------------------------------*/\r
#define configUSE_PREEMPTION 1\r
#define configUSE_IDLE_HOOK 1\r
-#define configUSE_TICK_HOOK 1\r
+#define configUSE_TICK_HOOK 0\r
#define configCPU_CLOCK_HZ ( ( unsigned portLONG ) 56000000 ) /* Clock setup from start.asm in the demo application. */\r
#define configCLKP1_CLOCK_HZ ( ( unsigned portLONG ) 56000000 ) /* Clock setup from start.asm in the demo application. */\r
#define configTICK_RATE_HZ ( (portTickType) 100 )\r
#define INCLUDE_vTaskDelay 1\r
#define INCLUDE_xTaskGetSchedulerState 1\r
#define INCLUDE_xTaskGetCurrentTaskHandle 1\r
+\r
+\r
+#define configKERNEL_INTERRUPT_PRIORITY 6\r
+\r
#endif /* FREERTOS_CONFIG_H */\r