]> begriffs open source - cmsis-freertos/blob - Demo/ColdFire_MCF52221_CodeWarrior/sources/support_common.h
Initial commit
[cmsis-freertos] / Demo / ColdFire_MCF52221_CodeWarrior / sources / support_common.h
1 /*
2 * File:         support_common.h
3  * Purpose:             Various project configurations.
4  *
5  * Notes:
6  */
7
8 #ifndef _SUPPORT_COMMON_H_
9 #define _SUPPORT_COMMON_H_
10
11 /* Enable UART Support. */
12 #define ENABLE_UART_SUPPORT  0
13
14
15 #define MEMORY_INIT \
16         /* Initialize RAMBAR: locate SRAM and validate it */ \
17         move.l  %#__RAMBAR + 0x21,d0; \
18         movec   d0,RAMBAR;
19
20 #define SUPPORT_ROM_TO_RAM 1
21
22 /*
23  * Include the derivative header files
24  */
25 #include "MCF52221.h"
26
27 /*
28  * Include the board specific header files
29  */
30 #include "MCF52221_sysinit.h"
31
32 /********************************************************************/
33
34 #endif /* _SUPPORT_COMMON_H_ */
35