You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
4.5 KiB
C
141 lines
4.5 KiB
C
/** ###################################################################
|
|
** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
|
|
** Filename : Cpu.H
|
|
** Project : RTOSDemo
|
|
** Processor : MC9S12C32CFU
|
|
** Beantype : MC9S12C32_80
|
|
** Version : Bean 01.002, Driver 01.09, CPU db: 2.87.276
|
|
** Compiler : Metrowerks HC12 C Compiler
|
|
** Date/Time : 17/05/2005, 08:36
|
|
** Abstract :
|
|
** This bean "MC9S12C32_80" implements properties, methods,
|
|
** and events of the CPU.
|
|
** Settings :
|
|
**
|
|
** Contents :
|
|
** EnableInt - void Cpu_EnableInt(void);
|
|
** DisableInt - void Cpu_DisableInt(void);
|
|
** SetWaitMode - void Cpu_SetWaitMode(void);
|
|
** SetStopMode - void Cpu_SetStopMode(void);
|
|
**
|
|
** (c) Copyright UNIS, spol. s r.o. 1997-2002
|
|
** UNIS, spol. s r.o.
|
|
** Jundrovska 33
|
|
** 624 00 Brno
|
|
** Czech Republic
|
|
** http : www.processorexpert.com
|
|
** mail : info@processorexpert.com
|
|
** ###################################################################*/
|
|
|
|
#ifndef __Cpu
|
|
#define __Cpu
|
|
|
|
/* Active configuration define symbol */
|
|
#define PEcfg_80pin 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 "PE_Timer.h"
|
|
|
|
/* MODULE Cpu. */
|
|
|
|
|
|
/* Global variables */
|
|
extern volatile byte CCR_reg; /* Current CCR reegister */
|
|
extern byte CpuMode; /* Current speed mode */
|
|
|
|
|
|
#define Cpu_SetStopMode() __asm("STOP") /* Set STOP mode */
|
|
/*
|
|
** ===================================================================
|
|
** Method : Cpu_SetStopMode (bean MC9S12C32_80)
|
|
**
|
|
** Description :
|
|
** Set low power mode - Stop mode. For more information
|
|
** about the stop mode see documentation of this CPU.
|
|
** Parameters : None
|
|
** Returns : Nothing
|
|
** ===================================================================
|
|
*/
|
|
|
|
#define Cpu_SetWaitMode() __asm("WAIT") /* Set WAIT mode */
|
|
/*
|
|
** ===================================================================
|
|
** Method : Cpu_SetWaitMode (bean MC9S12C32_80)
|
|
**
|
|
** Description :
|
|
** Set low power mode - Wait mode. For more information
|
|
** about the wait mode see documentation of this CPU.
|
|
** Release from Watch mode: Reset or interrupt
|
|
** Parameters : None
|
|
** Returns : Nothing
|
|
** ===================================================================
|
|
*/
|
|
|
|
|
|
|
|
#define Cpu_DisableInt() __DI() /* Disable interrupts */
|
|
/*
|
|
** ===================================================================
|
|
** Method : Cpu_DisableInt (bean MC9S12C32_80)
|
|
**
|
|
** Description :
|
|
** Disable maskable interrupts
|
|
** Parameters : None
|
|
** Returns : Nothing
|
|
** ===================================================================
|
|
*/
|
|
|
|
#define Cpu_EnableInt() __EI() /* Enable interrupts */
|
|
/*
|
|
** ===================================================================
|
|
** Method : Cpu_EnableInt (bean MC9S12C32_80)
|
|
**
|
|
** Description :
|
|
** Enable maskable interrupts
|
|
** Parameters : None
|
|
** Returns : Nothing
|
|
** ===================================================================
|
|
*/
|
|
|
|
#pragma CODE_SEG __NEAR_SEG NON_BANKED /* Interrupt section for this module. Placement will be in NON_BANKED area. */
|
|
|
|
__interrupt void Cpu_Interrupt(void);
|
|
/*
|
|
** ===================================================================
|
|
** Method : Cpu_Interrupt (bean MC9S12C32_80)
|
|
**
|
|
** Description :
|
|
** This method is internal. It is used by Processor Expert
|
|
** only.
|
|
** ===================================================================
|
|
*/
|
|
|
|
#pragma CODE_SEG DEFAULT /* Change code section to DEFAULT. */
|
|
|
|
void PE_low_level_init(void);
|
|
/*
|
|
** ===================================================================
|
|
** Method : PE_low_level_init (bean MC9S12C32_80)
|
|
**
|
|
** Description :
|
|
** This method is internal. It is used by Processor Expert
|
|
** only.
|
|
** ===================================================================
|
|
*/
|
|
|
|
/* END Cpu. */
|
|
|
|
#endif /* ifndef __Cpu */
|
|
/*
|
|
** ###################################################################
|
|
**
|
|
** This file was created by UNIS Processor Expert 03.33 for
|
|
** the Motorola HCS12 series of microcontrollers.
|
|
**
|
|
** ###################################################################
|
|
*/
|