?? cpu.h
字號:
/** ###################################################################
** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
** Filename : Cpu.H
** Project : vvvf_56F8346
** Processor : 56F8346
** Beantype : 56F8346
** Version : Bean 01.048, Driver 01.27, CPU db: 2.87.097
** Datasheet : MC56F8346/D Rev. 1.0, MC56F8300UM/D - Rev. 1.0
** Compiler : Metrowerks DSP C Compiler
** Date/Time : 2008-3-7, 15:22
** Abstract :
**
** Settings :
**
** Contents :
** EnableInt - void Cpu_EnableInt(void);
** DisableInt - void Cpu_DisableInt(void);
** SetWaitMode - void Cpu_SetWaitMode(void);
** SetStopMode - void Cpu_SetStopMode(void);
** SetDataMode - void Cpu_SetDataMode(byte Mode);
**
** (c) Freescale Semiconductor
** 2004 All Rights Reserved
**
** (c) Copyright UNIS, spol. s r.o. 1997-2005
** UNIS, spol. s r.o.
** Jundrovska 33
** 624 00 Brno
** Czech Republic
** http : www.processorexpert.com
** mail : info@processorexpert.com
** ###################################################################*/
#ifndef __Cpu_H
#define __Cpu_H
/* Active configuration define symbol */
#define PEcfg_sdmexternalmemory 1
/*Include shared modules, which are used for whole project*/
#include "PE_Types.h"
#include "PE_Error.h"
#include "PE_Const.h"
#include "IO_Map.h"
#include "assert.h"
/* MODULE Cpu. */
#ifndef __BWUserType_TShadowRegs
#define __BWUserType_TShadowRegs
typedef struct { /* Shadow register type. */
word* R0; /* Shadow register R0. */
word* R1; /* Shadow register R1. */
int N; /* Shadow register N. */
int M01; /* Shadow register M01. */
} TShadowRegs;
#endif
/* Global variables */
extern volatile word SR_lock; /* Lock */
extern volatile word SR_reg; /* Current value of the SR register */
#define Cpu_SetStopMode() asm(STOP) /* Set STOP mode */
/*
** ===================================================================
** Method : Cpu_SetStopMode (bean 56F8346)
**
** Description :
** Sets low power mode - Stop mode.
** For more information about the stop mode see this CPU
** documentation.
** Parameters : None
** Returns : Nothing
** ===================================================================
*/
#define Cpu_SetWaitMode() asm(WAIT) /* Set WAIT mode */
/*
** ===================================================================
** Method : Cpu_SetWaitMode (bean 56F8346)
**
** Description :
** Sets low power mode - Wait mode.
** For more information about the wait mode see this CPU
** documentation.
** Release from wait mode: Reset or interrupt
** Parameters : None
** Returns : Nothing
** ===================================================================
*/
/*Shadow variables*/
extern word Shadow_GPIO_C_DR; /* Shadow variable for I/O beans */
extern word Shadow_GPIO_E_DR; /* Shadow variable for I/O beans */
#define Cpu_DisableInt() __DI() /* Disable interrupts */
/*
** ===================================================================
** Method : Cpu_DisableInt (bean 56F8346)
**
** Description :
** Disables all maskable interrupts
** Parameters : None
** Returns : Nothing
** ===================================================================
*/
#define Cpu_EnableInt() __EI(0) /* Enable interrupts */
/*
** ===================================================================
** Method : Cpu_EnableInt (bean 56F8346)
**
** Description :
** Enables all maskable interrupts
** Parameters : None
** Returns : Nothing
** ===================================================================
*/
void Cpu_SetDataMode(byte Mode);
/*
** ===================================================================
** Method : Cpu_SetDataMode (bean 56F8346)
**
** Description :
** Sets the Data memory map to use either internal &
** external resources or external resources only.
** Parameters :
** NAME - DESCRIPTION
** Mode - Data memory access mode.
** Possible modes:
** INT_EXT_MODE - use internal & external
** resources
** EXT_MODE - use external resources only
** Returns : Nothing
** ===================================================================
*/
void PE_low_level_init(void);
/*
** ===================================================================
** Method : PE_low_level_init (bean 56F8346)
**
** Description :
** Initializes beans and provides common register initialization.
** The method is called automatically as a part of the
** application initialization code.
** This method is internal. It is used by Processor Expert only.
** ===================================================================
*/
void Cpu_Interrupt(void);
/*
** ===================================================================
** Method : Cpu_Interrupt (bean 56F8346)
**
** Description :
** The method services the interrupt of the selected peripheral(s)
** and eventually invokes the beans event(s).
** This method is internal. It is used by Processor Expert only.
** ===================================================================
*/
void _EntryPoint(void);
/*
** ===================================================================
** Method : _EntryPoint (bean 56F8346)
**
** Description :
** Initializes the whole system like timing and so on. At the end
** of this function, the C startup is invoked to initialize stack,
** memory areas and so on.
** This method is internal. It is used by Processor Expert only.
** ===================================================================
*/
/* END Cpu. */
#endif
/* __Cpu_H */
/*
** ###################################################################
**
** This file was created by UNIS Processor Expert 2.97 [03.74]
** for the Freescale 56800 series of microcontrollers.
**
** ###################################################################
*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -