OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [lwIP_AVR32_UC3/] [FreeRTOSConfig.h] - Blame information for rev 583

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 583 jeremybenn
/*This file is prepared for Doxygen automatic documentation generation.*/
2
/*! \file *********************************************************************
3
 *
4
 * \brief FreeRTOS and lwIP example for AVR32 UC3.
5
 *
6
 * - Compiler:           IAR EWAVR32 and GNU GCC for AVR32
7
 * - Supported devices:  All AVR32 devices can be used.
8
 * - AppNote:
9
 *
10
 * \author               Atmel Corporation: http://www.atmel.com \n
11
 *                       Support and FAQ: http://support.atmel.no/
12
 *
13
 ******************************************************************************/
14
 
15
/* Copyright (c) 2007, Atmel Corporation All rights reserved.
16
 *
17
 * Redistribution and use in source and binary forms, with or without
18
 * modification, are permitted provided that the following conditions are met:
19
 *
20
 * 1. Redistributions of source code must retain the above copyright notice,
21
 * this list of conditions and the following disclaimer.
22
 *
23
 * 2. Redistributions in binary form must reproduce the above copyright notice,
24
 * this list of conditions and the following disclaimer in the documentation
25
 * and/or other materials provided with the distribution.
26
 *
27
 * 3. The name of ATMEL may not be used to endorse or promote products derived
28
 * from this software without specific prior written permission.
29
 *
30
 * THIS SOFTWARE IS PROVIDED BY ATMEL ``AS IS'' AND ANY EXPRESS OR IMPLIED
31
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
32
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY AND
33
 * SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT,
34
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
35
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
36
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
37
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40
 */
41
 
42
 
43
#ifndef FREERTOS_CONFIG_H
44
#define FREERTOS_CONFIG_H
45
 
46
#include "board.h"
47
 
48
 
49
/*-----------------------------------------------------------
50
 * Application specific definitions.
51
 *
52
 * These definitions should be adjusted for your particular hardware and
53
 * application requirements.
54
 *
55
 * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE
56
 * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE.
57
 *
58
 * See http://www.freertos.org/a00110.html.
59
 *----------------------------------------------------------*/
60
 
61
#define configUSE_PREEMPTION      1
62
#define configUSE_IDLE_HOOK       0
63
#define configUSE_TICK_HOOK       0
64
#define configCPU_CLOCK_HZ        ( 48000000 ) /* Hz clk gen */
65
#define configPBA_CLOCK_HZ        ( 24000000 )
66
#define configTICK_RATE_HZ        ( ( portTickType ) 1000 )
67
#define configMAX_PRIORITIES      ( ( unsigned portBASE_TYPE ) 8 )
68
#define configMINIMAL_STACK_SIZE  ( ( unsigned short ) 256 )
69
/* configTOTAL_HEAP_SIZE is not used when heap_3.c is used. */
70
#define configTOTAL_HEAP_SIZE     ( ( size_t ) ( 1024*25 ) )
71
#define configMAX_TASK_NAME_LEN   ( 20 )
72
#define configUSE_TRACE_FACILITY  1
73
#define configUSE_16_BIT_TICKS    0
74
#define configIDLE_SHOULD_YIELD   1
75
 
76
/* Co-routine definitions. */
77
#define configUSE_CO_ROUTINES     0
78
#define configMAX_CO_ROUTINE_PRIORITIES ( 0 )
79
 
80
/* Set the following definitions to 1 to include the API function, or zero
81
to exclude the API function. */
82
 
83
#define INCLUDE_vTaskPrioritySet            1
84
#define INCLUDE_uxTaskPriorityGet           1
85
#define INCLUDE_vTaskDelete                 1
86
#define INCLUDE_vTaskCleanUpResources       0
87
#define INCLUDE_vTaskSuspend                1
88
#define INCLUDE_vTaskDelayUntil             1
89
#define INCLUDE_vTaskDelay                  1
90
#define INCLUDE_xTaskGetCurrentTaskHandle   1
91
#define INCLUDE_xTaskGetSchedulerState      0
92
 
93
/* configTICK_USE_TC is a boolean indicating whether to use a Timer Counter
94
   for the tick generation. Timer Counter will generate an accurate Tick;
95
   otherwise the CPU will generate a tick but with time drift.
96
   configTICK_TC_CHANNEL is the TC channel. */
97
#define configTICK_USE_TC             1
98
#define configTICK_TC_CHANNEL         2
99
 
100
/* configHEAP_INIT is a boolean indicating whether to initialize the heap with
101
   0xA5 in order to be able to determine the maximal heap consumption. */
102
#define configHEAP_INIT               0
103
 
104
 
105
#endif /* FREERTOS_CONFIG_H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.