📄 bit2.c
字号:
/** ###################################################################
** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
** Filename : Bit2.C
** Project : dy
** Processor : MC9S08QD4CSC
** Beantype : BitIO
** Version : Bean 02.068, Driver 03.13, CPU db: 2.87.049
** Compiler : CodeWarrior HCS08 C Compiler
** Date/Time : 2008-3-13, 11:04
** Abstract :
** This bean "BitIO" implements an one-bit input/output.
** It uses one bit/pin of a port.
** Methods of this bean are mostly implemented as a macros
** (if supported by target language and compiler).
** Settings :
** Used pin :
** ----------------------------------------------------
** Number (on package) | Name
** ----------------------------------------------------
** 7 | PTA1_KBI1P1_TPM1CH1_ADC1P1
** ----------------------------------------------------
**
** Port name : PTA
**
** Bit number (in port) : 1
** Bit mask of the port : $0002
**
** Initial direction : Output (direction can be changed)
** Safe mode : yes
** Initial output value : 0
** Initial pull option : off
**
** Port data register : PTAD [$0000]
** Port control register : PTADD [$0001]
** Port function register : KBIPE [$000D]
**
** Optimization for : speed
** Contents :
** SetDir - void Bit2_SetDir(bool Dir);
** GetVal - bool Bit2_GetVal(void);
** PutVal - void Bit2_PutVal(bool Val);
** ClrVal - void Bit2_ClrVal(void);
** SetVal - void Bit2_SetVal(void);
**
** (c) Copyright UNIS, spol. s r.o. 1997-2006
** UNIS, spol. s r.o.
** Jundrovska 33
** 624 00 Brno
** Czech Republic
** http : www.processorexpert.com
** mail : info@processorexpert.com
** ###################################################################*/
/* MODULE Bit2. */
#include "Bit2.h"
/* Including shared modules, which are used in the whole project */
#include "PE_Types.h"
#include "PE_Error.h"
#include "PE_Const.h"
#include "IO_Map.h"
#include "Cpu.h"
/*
** ===================================================================
** Method : Bit2_GetVal (bean BitIO)
**
** Description :
** This method returns an input value.
** a) direction = Input : reads the input value from the
** pin and returns it
** b) direction = Output : returns the last written value
** Parameters : None
** Returns :
** --- - Input value. Possible values:
** FALSE - logical "0" (Low level)
** TRUE - logical "1" (High level)
** ===================================================================
*/
/*
bool Bit2_GetVal(void)
** This method is implemented as a macro. See Bit2.h file. **
*/
/*
** ===================================================================
** Method : Bit2_PutVal (bean BitIO)
**
** Description :
** This method writes the new output value.
** a) direction = Input : sets the new output value;
** this operation will be shown on
** output after the direction has
** been switched to output
** (SetDir(TRUE);)
** b) direction = Output : directly writes the value to the
** appropriate pin
** Parameters :
** NAME - DESCRIPTION
** Val - Output value. Possible values:
** FALSE - logical "0" (Low level)
** TRUE - logical "1" (High level)
** Returns : Nothing
** ===================================================================
*/
void Bit2_PutVal(bool Val)
{
if (Val) {
setReg8Bits(PTAD, 0x02); /* PTAD1=0x01 */
Shadow_PTA |= 0x02; /* Set-up shadow variable */
} else { /* !Val */
clrReg8Bits(PTAD, 0x02); /* PTAD1=0x00 */
Shadow_PTA &= ~0x02; /* Set-up shadow variable */
} /* !Val */
}
/*
** ===================================================================
** Method : Bit2_ClrVal (bean BitIO)
**
** Description :
** This method clears (sets to zero) the output value.
** a) direction = Input : sets the output value to "0";
** this operation will be shown on
** output after the direction has
** been switched to output
** (SetDir(TRUE);)
** b) direction = Output : directly writes "0" to the
** appropriate pin
** Parameters : None
** Returns : Nothing
** ===================================================================
*/
/*
void Bit2_ClrVal(void)
** This method is implemented as a macro. See Bit2.h file. **
*/
/*
** ===================================================================
** Method : Bit2_SetVal (bean BitIO)
**
** Description :
** This method sets (sets to one) the output value.
** a) direction = Input : sets the output value to "1";
** this operation will be shown on
** output after the direction has
** been switched to output
** (SetDir(TRUE);)
** b) direction = Output : directly writes "1" to the
** appropriate pin
** Parameters : None
** Returns : Nothing
** ===================================================================
*/
/*
void Bit2_SetVal(void)
** This method is implemented as a macro. See Bit2.h file. **
*/
/*
** ===================================================================
** Method : Bit2_SetDir (bean BitIO)
**
** Description :
** This method sets direction of the bean.
** Parameters :
** NAME - DESCRIPTION
** Dir - Direction to set (FALSE or TRUE)
** FALSE = Input, TRUE = Output
** Returns : Nothing
** ===================================================================
*/
void Bit2_SetDir(bool Dir)
{
if (Dir) {
setReg8(PTAD, (getReg8(PTAD) & (~0x02)) | (Shadow_PTA & 0x02)); /* PTAD1=Shadow_PTA[bit 1] */
setReg8Bits(PTADD, 0x02); /* PTADD1=0x01 */
} else { /* !Dir */
clrReg8Bits(PTADD, 0x02); /* PTADD1=0x00 */
} /* !Dir */
}
/* END Bit2. */
/*
** ###################################################################
**
** This file was created by UNIS Processor Expert 3.00 [03.89]
** for the Freescale HCS08 series of microcontrollers.
**
** ###################################################################
*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -