📄 pwm_01.asm
字号:
;;*****************************************************************************
;;*****************************************************************************
;; FILENAME: PWM_01.asm
;; Version: 2.5, Updated on 2006/05/15 at 15:09:31
;; Generated by PSoC Designer ???
;;
;; DESCRIPTION: PWM8 User Module software implementation file
;; for the 22/24/27/29xxx PSoC family of devices
;;
;; NOTE: User Module APIs conform to the fastcall16 convention for marshalling
;; arguments and observe the associated "Registers are volatile" policy.
;; This means it is the caller's responsibility to preserve any values
;; in the X and A registers that are still needed after the API functions
;; returns. For Large Memory Model devices it is also the caller's
;; responsibility to perserve any value in the CUR_PP, IDX_PP, MVR_PP and
;; MVW_PP registers. Even though some of these registers may not be modified
;; now, there is no guarantee that will remain the case in future releases.
;;-----------------------------------------------------------------------------
;; Copyright (c) Cypress MicroSystems 2000-2004. All Rights Reserved.
;;*****************************************************************************
;;*****************************************************************************
include "m8c.inc"
include "PWM_01.inc"
include "memory.inc"
;-----------------------------------------------
; Global Symbols
;-----------------------------------------------
export PWM_01_EnableInt
export _PWM_01_EnableInt
export PWM_01_DisableInt
export _PWM_01_DisableInt
export PWM_01_Start
export _PWM_01_Start
export PWM_01_Stop
export _PWM_01_Stop
export PWM_01_WritePeriod
export _PWM_01_WritePeriod
export PWM_01_WritePulseWidth
export _PWM_01_WritePulseWidth
export PWM_01_bReadPulseWidth
export _PWM_01_bReadPulseWidth
export PWM_01_bReadCounter
export _PWM_01_bReadCounter
; The following functions are deprecated and subject to omission in future releases
;
export bPWM_01_ReadPulseWidth ; deprecated
export _bPWM_01_ReadPulseWidth ; deprecated
export bPWM_01_ReadCounter ; deprecated
export _bPWM_01_ReadCounter ; deprecated
AREA light_RAM (RAM,REL)
;-----------------------------------------------
; Constant Definitions
;-----------------------------------------------
INPUT_REG_NULL: equ 0x00 ; Clear the input register
;-----------------------------------------------
; Variable Allocation
;-----------------------------------------------
AREA UserModules (ROM, REL)
.SECTION
;-----------------------------------------------------------------------------
; FUNCTION NAME: PWM_01_EnableInt
;
; DESCRIPTION:
; Enables this PWM's interrupt by setting the interrupt enable mask bit
; associated with this User Module. This function has no effect until and
; unless the global interrupts are enabled (for example by using the
; macro M8C_EnableGInt).
;-----------------------------------------------------------------------------
;
; ARGUMENTS: None.
; RETURNS: Nothing.
; SIDE EFFECTS:
; The A and X registers may be modified by this or future implementations
; of this function. The same is true for all RAM page pointer registers in
; the Large Memory Model. When necessary, it is the calling function's
; responsibility to perserve their values across calls to fastcall16
; functions.
;
PWM_01_EnableInt:
_PWM_01_EnableInt:
RAM_PROLOGUE RAM_USE_CLASS_1
PWM_01_EnableInt_M
RAM_EPILOGUE RAM_USE_CLASS_1
ret
.ENDSECTION
.SECTION
;-----------------------------------------------------------------------------
; FUNCTION NAME: PWM_01_DisableInt
;
; DESCRIPTION:
; Disables this PWM's interrupt by clearing the interrupt enable
; mask bit associated with this User Module.
;-----------------------------------------------------------------------------
;
; ARGUMENTS: None
; RETURNS: Nothing
; SIDE EFFECTS:
; The A and X registers may be modified by this or future implementations
; of this function. The same is true for all RAM page pointer registers in
; the Large Memory Model. When necessary, it is the calling function's
; responsibility to perserve their values across calls to fastcall16
; functions.
;
PWM_01_DisableInt:
_PWM_01_DisableInt:
RAM_PROLOGUE RAM_USE_CLASS_1
PWM_01_DisableInt_M
RAM_EPILOGUE RAM_USE_CLASS_1
ret
.ENDSECTION
.SECTION
;-----------------------------------------------------------------------------
; FUNCTION NAME: PWM_01_Start
;
; DESCRIPTION:
; Sets the start bit in the Control register of this user module. The
; PWM will begin counting on the next input clock as soon as the
; enable input is asserted high.
;-----------------------------------------------------------------------------
;
; ARGUMENTS: None
; RETURNS: Nothing
; SIDE EFFECTS:
; The A and X registers may be modified by this or future implementations
; of this function. The same is true for all RAM page pointer registers in
; the Large Memory Model. When necessary, it is the calling function's
; responsibility to perserve their values across calls to fastcall16
; functions.
;
PWM_01_Start:
_PWM_01_Start:
RAM_PROLOGUE RAM_USE_CLASS_1
PWM_01_Start_M
RAM_EPILOGUE RAM_USE_CLASS_1
ret
.ENDSECTION
.SECTION
;-----------------------------------------------------------------------------
; FUNCTION NAME: PWM_01_Stop
;
; DESCRIPTION:
; Disables PWM operation by clearing the start bit in the Control
; register.
;-----------------------------------------------------------------------------
;
; ARGUMENTS: None
; RETURNS: Nothing
; SIDE EFFECTS:
; The A and X registers may be modified by this or future implementations
; of this function. The same is true for all RAM page pointer registers in
; the Large Memory Model. When necessary, it is the calling function's
; responsibility to perserve their values across calls to fastcall16
; functions.
;
PWM_01_Stop:
_PWM_01_Stop:
RAM_PROLOGUE RAM_USE_CLASS_1
PWM_01_Stop_M
RAM_EPILOGUE RAM_USE_CLASS_1
ret
.ENDSECTION
.SECTION
;-----------------------------------------------------------------------------
; FUNCTION NAME: PWM_01_WritePeriod
;
; DESCRIPTION:
; Write the 8-bit period value into the Period register (DR1).
;-----------------------------------------------------------------------------
;
; ARGUMENTS: fastcall16 BYTE bPeriodValue (passed in A)
; RETURNS: Nothing
; SIDE EFFECTS:
; If the PWM user module is stopped, then this value will also be
; latched into the Count register (DR0).
;
; The A and X registers may be modified by this or future implementations
; of this function. The same is true for all RAM page pointer registers in
; the Large Memory Model. When necessary, it is the calling function's
; responsibility to perserve their values across calls to fastcall16
; functions.
;
PWM_01_WritePeriod:
_PWM_01_WritePeriod:
RAM_PROLOGUE RAM_USE_CLASS_1
mov reg[PWM_01_PERIOD_REG], A
RAM_EPILOGUE RAM_USE_CLASS_1
ret
.ENDSECTION
.SECTION
;-----------------------------------------------------------------------------
; FUNCTION NAME: PWM_01_WritePulseWidth
;
; DESCRIPTION:
; Writes compare value into the Compare register (DR2).
;-----------------------------------------------------------------------------
;
; ARGUMENTS: fastcall16 BYTE bCompareValue (passed in A)
; RETURNS: Nothing
; SIDE EFFECTS:
; The A and X registers may be modified by this or future implementations
; of this function. The same is true for all RAM page pointer registers in
; the Large Memory Model. When necessary, it is the calling function's
; responsibility to perserve their values across calls to fastcall16
; functions.
;
PWM_01_WritePulseWidth:
_PWM_01_WritePulseWidth:
RAM_PROLOGUE RAM_USE_CLASS_1
mov reg[PWM_01_COMPARE_REG], A
RAM_EPILOGUE RAM_USE_CLASS_1
ret
.ENDSECTION
.SECTION
;-----------------------------------------------------------------------------
; FUNCTION NAME: PWM_01_bReadPulseWidth
;
; DESCRIPTION:
; Reads the Compare register.
;-----------------------------------------------------------------------------
;
; ARGUMENTS: None
; RETURNS: fastcall16 BYTE bCompareValue (value of DR2 in the A register)
; SIDE EFFECTS:
; The A and X registers may be modified by this or future implementations
; of this function. The same is true for all RAM page pointer registers in
; the Large Memory Model. When necessary, it is the calling function's
; responsibility to perserve their values across calls to fastcall16
; functions.
;
PWM_01_bReadPulseWidth:
_PWM_01_bReadPulseWidth:
bPWM_01_ReadPulseWidth: ; this name deprecated
_bPWM_01_ReadPulseWidth: ; this name deprecated
RAM_PROLOGUE RAM_USE_CLASS_1
mov A, reg[PWM_01_COMPARE_REG]
RAM_EPILOGUE RAM_USE_CLASS_1
ret
.ENDSECTION
.SECTION
;-----------------------------------------------------------------------------
; FUNCTION NAME: PWM_01_bReadCounter
;
; DESCRIPTION:
; Returns the value in the Count register (DR0), preserving the value in
; the compare register (DR2). Interrupts are prevented during the transfer
; from the Count to the Compare registers by holding the clock low in
; the PSoC block.
;-----------------------------------------------------------------------------
;
; ARGUMENTS: None
; RETURNS: fastcall16 BYTE bCount (value of DR0 in the A register)
; SIDE EFFECTS:
; 1) The user module is stopped momentarily and one or more counts may be missed.
; 2) The A and X registers may be modified by this or future implementations
; of this function. The same is true for all RAM page pointer registers in
; the Large Memory Model. When necessary, it is the calling function's
; responsibility to perserve their values across calls to fastcall16
; functions.
;
PWM_01_bReadCounter:
_PWM_01_bReadCounter:
bPWM_01_ReadCounter: ; this name deprecated
_bPWM_01_ReadCounter: ; this name deprecated
bOrigCompareValue: EQU 0 ; Frame offset to temp Compare store
bOrigClockSetting: EQU 1 ; Frame offset to temp Input store
wCounter: EQU 2 ; Frame offset to temp Count store
STACK_FRAME_SIZE: EQU 3 ; max stack frame size is 3 bytes
RAM_PROLOGUE RAM_USE_CLASS_2
mov X, SP ; X <- stack frame pointer
mov A, reg[PWM_01_COMPARE_REG] ; Save the Compare register on the stack
push A ;
PWM_01_Stop_M ; Disable (stop) the PWM
M8C_SetBank1 ;
mov A, reg[PWM_01_INPUT_REG] ; save the clock input setting
push A ; on the stack (now 2 bytes) and ...
; hold the clock low:
mov reg[PWM_01_INPUT_REG], INPUT_REG_NULL
M8C_SetBank0
; Extract the Count via DR2 register
mov A, reg[PWM_01_COUNTER_REG] ; DR2 <- DR0
mov A, reg[PWM_01_COMPARE_REG] ; Stash the Count on the stack
push A ; -stack frame is now 3 bytes
mov A, [X+bOrigCompareValue] ; Restore the Compare register
mov reg[PWM_01_COMPARE_REG], A
M8C_SetBank1 ; Restore the PWM operation:
mov A, [X+bOrigClockSetting] ; First, the clock setting...
mov reg[PWM_01_INPUT_REG], A ;
M8C_SetBank0 ;
PWM_01_Start_M ; then re-enable the PWM.
pop A ; Setup the return value
ADD SP, -(STACK_FRAME_SIZE-1) ; Zap remainder of stack frame
RAM_EPILOGUE RAM_USE_CLASS_2
ret
.ENDSECTION
; End of File PWM_01.asm
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -