1 /*This file has been prepared for Doxygen automatic documentation generation.*/
2 /*! \file *********************************************************************
4 * \brief FreeRTOS and lwIP example for AVR32 UC3.
6 * - Compiler: GNU GCC for AVR32
7 * - Supported devices: All AVR32 devices can be used.
10 * \author Atmel Corporation: http://www.atmel.com \n
11 * Support and FAQ: http://support.atmel.no/
13 *****************************************************************************/
15 /* Copyright (c) 2007, Atmel Corporation All rights reserved.
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are met:
20 * 1. Redistributions of source code must retain the above copyright notice,
21 * this list of conditions and the following disclaimer.
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.
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.
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.
43 /* Environment include files. */
49 /* Scheduler include files. */
53 /* Demo file headers. */
57 #include "netif/etharp.h"
60 /* Priority definitions for most of the tasks in the demo application. */
61 #define mainLED_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )
62 #define mainETH_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )
64 /* Baud rate used by the serial port tasks. */
65 #define mainCOM_BAUD_RATE ( ( unsigned long ) 57600 )
66 #define mainCOM_BUFFER_LEN ( ( unsigned long ) 70 )
68 /* An address in the internal Flash used to count resets. This is used to check that
69 the demo application is not unexpectedly resetting. */
70 #define mainRESET_COUNT_ADDRESS ( ( void * ) 0xC0000000 )
75 //! \brief start the software here
76 //! 1) Initialize the microcontroller and the shared hardware resources
78 //! 2) Launch the IP modules.
79 //! 3) Start FreeRTOS.
80 //! \return 42, which should never occur.
85 volatile avr32_pm_t* pm = &AVR32_PM;
87 /* 1) Initialize the microcontroller and the shared hardware resources of the board. */
89 /* Switch to external oscillator 0 */
90 pm_switch_to_osc0( pm, FOSC0, OSC0_STARTUP );
92 /* Setup PLL0 on OSC0, mul+1=16 ,divisor by 1, lockcount=16, ie. 12Mhzx16/1 = 192MHz output.
93 Extra div by 2 => 96MHz */
94 pm_pll_setup(pm, /* volatile avr32_pm_t* pm */
95 0, /* unsigned int pll */
96 15, /* unsigned int mul */
97 1, /* unsigned int div, Sel Osc0/PLL0 or Osc1/Pll1 */
98 0, /* unsigned int osc */
99 16); /* unsigned int lockcount */
101 pm_pll_set_option( pm, 0, // pll0
102 0, // Choose the range 160-240MHz.
109 /* Wait for PLL0 locked */
110 pm_wait_for_pll0_locked(pm) ;
112 /* Setup generic clock number 2 on PLL, with OSC0/PLL0, no divisor */
115 1, /* Use Osc (=0) or PLL (=1) */
116 0, /* Sel Osc0/PLL0 or Osc1/Pll1 */
120 /* Enable Generic clock 0*/
123 /* switch to clock */
124 pm_cksel( pm, 1, 1, 1, 0, 1, 0 );
125 flashc_set_wait_state( 1 );
126 pm_switch_to_clock( pm, AVR32_PM_MCCTRL_MCSEL_PLL0 );
128 /* Setup the LED's for output. */
129 vParTestInitialise();
131 /* Start the flash tasks just to provide visual feedback that the demo is
133 vStartLEDFlashTasks( mainLED_TASK_PRIORITY );
135 /* 2) Start ethernet task. */
136 vStartEthernetTask( mainETH_TASK_PRIORITY );
138 /* 3) Start FreeRTOS. */
139 vTaskStartScheduler();
141 /* Will only reach here if there was insufficient memory to create the idle task. */
145 /*-----------------------------------------------------------*/