⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sensor.c

📁 freescale mc9rs08le4 C code with 3,5 digits lcd
💻 C
字号:
/** ###################################################################
**     THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
**     Filename  : SENSOR.C
**     Project   : le4
**     Processor : MC9RS08LE4CPC
**     Beantype  : BitIO
**     Version   : Bean 02.072, Driver 03.09, CPU db: 3.00.000
**     Compiler  : CodeWarrior RS08 C Compiler
**     Date/Time : 19/2/2009, 18:06
**     Abstract  :
**         This bean "BitIO" implements an one-bit input/output.
**         It uses one bit/pin of a port.
**         Note: This bean is set to work in Output direction only.
**         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             |  PTC0_EXTAL
**             ----------------------------------------------------
**
**         Port name                   : PTC
**
**         Bit number (in port)        : 0
**         Bit mask of the port        : $0001
**
**         Initial direction           : Output (direction cannot be changed)
**         Initial output value        : 1
**         Initial pull option         : off
**
**         Port data register          : PTCD      [$004A]
**         Port control register       : PTCDD     [$004B]
**
**         Optimization for            : speed
**     Contents  :
**         GetVal - bool SENSOR_GetVal(void);
**         PutVal - void SENSOR_PutVal(bool Val);
**         ClrVal - void SENSOR_ClrVal(void);
**         SetVal - void SENSOR_SetVal(void);
**
**     (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
** ###################################################################*/

/* MODULE SENSOR. */

#include "SENSOR.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      :  SENSOR_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
**         Note: This bean is set to work in Output direction only.
**     Parameters  : None
**     Returns     :
**         ---             - Input value. Possible values:
**                           FALSE - logical "0" (Low level)
**                           TRUE - logical "1" (High level)

** ===================================================================
*/
/*
bool SENSOR_GetVal(void)

**  This method is implemented as a macro. See SENSOR.h file.  **
*/

/*
** ===================================================================
**     Method      :  SENSOR_PutVal (bean BitIO)
**
**     Description :
**         This method writes the new output value.
**     Parameters  :
**         NAME       - DESCRIPTION
**         Val             - Output value. Possible values:
**                           FALSE - logical "0" (Low level)
**                           TRUE - logical "1" (High level)
**     Returns     : Nothing
** ===================================================================
*/
void SENSOR_PutVal(bool Val)
{
  if (Val) {
    setReg8Bits(PTCD, 0x01);           /* PTCD0=0x01 */
  } else { /* !Val */
    clrReg8Bits(PTCD, 0x01);           /* PTCD0=0x00 */
  } /* !Val */
}

/*
** ===================================================================
**     Method      :  SENSOR_ClrVal (bean BitIO)
**
**     Description :
**         This method clears (sets to zero) the output value.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/
/*
void SENSOR_ClrVal(void)

**  This method is implemented as a macro. See SENSOR.h file.  **
*/

/*
** ===================================================================
**     Method      :  SENSOR_SetVal (bean BitIO)
**
**     Description :
**         This method sets (sets to one) the output value.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/
/*
void SENSOR_SetVal(void)

**  This method is implemented as a macro. See SENSOR.h file.  **
*/


/* END SENSOR. */
/*
** ###################################################################
**
**     This file was created by UNIS Processor Expert 3.04 [04.19]
**     for the Freescale RS08 series of microcontrollers.
**
** ###################################################################
*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -