mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 17:48:33 -04:00
Start of a new ColdFire/CodeWarrior demo.
This commit is contained in:
parent
8e219f83f0
commit
709b7ee223
57 changed files with 8456 additions and 0 deletions
35
Demo/ColdFire_MCF52221_CodeWarrior/sources/support_common.h
Normal file
35
Demo/ColdFire_MCF52221_CodeWarrior/sources/support_common.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* File: support_common.h
|
||||
* Purpose: Various project configurations.
|
||||
*
|
||||
* Notes:
|
||||
*/
|
||||
|
||||
#ifndef _SUPPORT_COMMON_H_
|
||||
#define _SUPPORT_COMMON_H_
|
||||
|
||||
/* Enable UART Support. */
|
||||
#define ENABLE_UART_SUPPORT 0
|
||||
|
||||
|
||||
#define MEMORY_INIT \
|
||||
/* Initialize RAMBAR: locate SRAM and validate it */ \
|
||||
move.l %#__RAMBAR + 0x21,d0; \
|
||||
movec d0,RAMBAR;
|
||||
|
||||
#define SUPPORT_ROM_TO_RAM 1
|
||||
|
||||
/*
|
||||
* Include the derivative header files
|
||||
*/
|
||||
#include "MCF52221.h"
|
||||
|
||||
/*
|
||||
* Include the board specific header files
|
||||
*/
|
||||
#include "MCF52221_sysinit.h"
|
||||
|
||||
/********************************************************************/
|
||||
|
||||
#endif /* _SUPPORT_COMMON_H_ */
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue