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

📄 pwm8_buz.inc

📁 带触摸按键的高端电磁炉设计 该方案采用CYPRESS的新器件CY8C22545,是一款专门针对中高端的家电触摸产品设计。除了集成触摸按键功能外
💻 INC
字号:
;;*****************************************************************************
;;*****************************************************************************
;;  FILENAME: PWM8_BUZ.inc
;;   Version: 2.5, Updated on 2008/12/13 at 10:58:7
;;  Generated by PSoC Designer ???
;;
;;  DESCRIPTION: Assembler declarations for the PWM8 user module interface
;;               for the 22/24/27/29xxx PSoC family of devices
;;-----------------------------------------------------------------------------
;;  Copyright (c) Cypress MicroSystems 2000-2004. All Rights Reserved.
;;*****************************************************************************
;;*****************************************************************************

include "m8c.inc"


;--------------------------------------------------
; Constants for PWM8_BUZ API's.
;--------------------------------------------------

PWM8_BUZ_CONTROL_REG_START_BIT:            equ 0x01    ; Control register start bit
PWM8_BUZ_INT_REG:                          equ 0x0e1
PWM8_BUZ_INT_MASK:                         equ 0x02


;--------------------------------------------------
; Constants for PWM8_BUZ user defined values
;--------------------------------------------------

PWM8_BUZ_PERIOD:                           equ 0x28
PWM8_BUZ_PULSE_WIDTH:                      equ 0x14


;--------------------------------------------------
; Register Address Constants for PWM8_BUZ
;--------------------------------------------------

PWM8_BUZ_COUNTER_REG:                  equ 0x24   ; DR0 Count register
PWM8_BUZ_PERIOD_REG:                   equ 0x25   ; DR1 Period register
PWM8_BUZ_COMPARE_REG:                  equ 0x26   ; DR2 Compare register
PWM8_BUZ_CONTROL_REG:                  equ 0x27   ; Control register
PWM8_BUZ_FUNC_REG:                     equ 0x24   ; Function register
PWM8_BUZ_INPUT_REG:                    equ 0x25   ; Input register
PWM8_BUZ_OUTPUT_REG:                   equ 0x26   ; Output register


;--------------------------------------------------
; PWM8_BUZ Macro 'Functions'
;--------------------------------------------------

   macro PWM8_BUZ_Start_M
   or    reg[PWM8_BUZ_CONTROL_REG],  PWM8_BUZ_CONTROL_REG_START_BIT
   endm

   macro PWM8_BUZ_Stop_M
   and   reg[PWM8_BUZ_CONTROL_REG], ~PWM8_BUZ_CONTROL_REG_START_BIT
   endm

   macro PWM8_BUZ_EnableInt_M
   M8C_EnableIntMask PWM8_BUZ_INT_REG, PWM8_BUZ_INT_MASK
   endm

   macro PWM8_BUZ_DisableInt_M
   M8C_DisableIntMask PWM8_BUZ_INT_REG, PWM8_BUZ_INT_MASK
   endm


; end of file PWM8_BUZ.inc

⌨️ 快捷键说明

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