mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-20 10:08: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
89
Demo/ColdFire_MCF52221_CodeWarrior/headers/MCF52221.h
Normal file
89
Demo/ColdFire_MCF52221_CodeWarrior/headers/MCF52221.h
Normal file
|
@ -0,0 +1,89 @@
|
|||
/* Coldfire C Header File
|
||||
* Copyright Freescale Semiconductor Inc
|
||||
* All rights reserved.
|
||||
*
|
||||
* 2008/05/23 Revision: 0.95
|
||||
*
|
||||
* (c) Copyright UNIS, a.s. 1997-2008
|
||||
* UNIS, a.s.
|
||||
* Jundrovska 33
|
||||
* 624 00 Brno
|
||||
* Czech Republic
|
||||
* http : www.processorexpert.com
|
||||
* mail : info@processorexpert.com
|
||||
*/
|
||||
|
||||
#ifndef __MCF52221_H__
|
||||
#define __MCF52221_H__
|
||||
|
||||
|
||||
/********************************************************************/
|
||||
/*
|
||||
* The basic data types
|
||||
*/
|
||||
|
||||
typedef unsigned char uint8; /* 8 bits */
|
||||
typedef unsigned short int uint16; /* 16 bits */
|
||||
typedef unsigned long int uint32; /* 32 bits */
|
||||
|
||||
typedef signed char int8; /* 8 bits */
|
||||
typedef signed short int int16; /* 16 bits */
|
||||
typedef signed long int int32; /* 32 bits */
|
||||
|
||||
typedef volatile uint8 vuint8; /* 8 bits */
|
||||
typedef volatile uint16 vuint16; /* 16 bits */
|
||||
typedef volatile uint32 vuint32; /* 32 bits */
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#pragma define_section system ".system" far_absolute RW
|
||||
|
||||
/***
|
||||
* MCF52221 Derivative Memory map definitions from linker command files:
|
||||
* __IPSBAR, __RAMBAR, __RAMBAR_SIZE, __FLASHBAR, __FLASHBAR_SIZE linker
|
||||
* symbols must be defined in the linker command file.
|
||||
*/
|
||||
|
||||
extern __declspec(system) uint8 __IPSBAR[];
|
||||
extern __declspec(system) uint8 __RAMBAR[];
|
||||
extern __declspec(system) uint8 __RAMBAR_SIZE[];
|
||||
extern __declspec(system) uint8 __FLASHBAR[];
|
||||
extern __declspec(system) uint8 __FLASHBAR_SIZE[];
|
||||
|
||||
#define IPSBAR_ADDRESS (uint32)__IPSBAR
|
||||
#define RAMBAR_ADDRESS (uint32)__RAMBAR
|
||||
#define RAMBAR_SIZE (uint32)__RAMBAR_SIZE
|
||||
#define FLASHBAR_ADDRESS (uint32)__FLASHBAR
|
||||
#define FLASHBAR_SIZE (uint32)__FLASHBAR_SIZE
|
||||
|
||||
|
||||
#include "MCF52221_SCM.h"
|
||||
#include "MCF52221_DMA.h"
|
||||
#include "MCF52221_UART.h"
|
||||
#include "MCF52221_I2C.h"
|
||||
#include "MCF52221_QSPI.h"
|
||||
#include "MCF52221_RTC.h"
|
||||
#include "MCF52221_DTIM.h"
|
||||
#include "MCF52221_INTC.h"
|
||||
#include "MCF52221_GPIO.h"
|
||||
#include "MCF52221_PAD.h"
|
||||
#include "MCF52221_RCM.h"
|
||||
#include "MCF52221_CCM.h"
|
||||
#include "MCF52221_PMM.h"
|
||||
#include "MCF52221_CLOCK.h"
|
||||
#include "MCF52221_EPORT.h"
|
||||
#include "MCF52221_PIT.h"
|
||||
#include "MCF52221_ADC.h"
|
||||
#include "MCF52221_GPTA.h"
|
||||
#include "MCF52221_PWM.h"
|
||||
#include "MCF52221_USB_OTG.h"
|
||||
#include "MCF52221_CFM.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#endif /* __MCF52221_H__ */
|
Loading…
Add table
Add a link
Reference in a new issue