152
OpenPWM
Type
Subroutine
Invocation
OpenPWM(channel, frequency, mode)
Parameter
Method
Type
Description
channel
ByVal
Byte
The channel to use for PWM generation.
frequency
ByVal
Single
The desired PWM frequency.
mode
ByVal
Byte
The desired PWM mode (see discussion below).
Discussion
This subroutine prepares a PWM channel for generating a pulse width modulated (PWM) signal. PWM
generation is performed using one of the CPUs 16-bit timers, the number of which varies depending on
the ZX model. The table below indicates the available channels and the corresponding timer used. See
the description of PWM() for additional details on the PWM channels.
ZX Models
Timer1
Channels
Timer3
Channels
Timer4
Channels
Timer5
Channels
ZX-24, ZX-24a, ZX-24p, ZX-24n,
ZX-40, ZX-40a, ZX-40p, ZX-40n,
ZX-44, ZX-44a, ZX-44p, ZX-44n,
ZX-24e, ZX-24ae
1, 2
-
-
-
ZX-1281, ZX-1281n,
ZX-128e, ZX-1281e
1, 2, 3
4, 5, 6
-
-
ZX-1280, ZX-1280n
1, 2, 3
4, 5, 6
7, 8, 9
10, 11, 12
The frequency parameter specifies the PWM base frequency in Hertz. Since the same frequency and
generation mode will be used for all PWM channels based on the same timer, it is only necessary to call
OpenPWM() once to prepare the timer for all of the PWM channels that are based on a given timer.
The mode parameter specifies the PWM generation mode. Two modes are supported: Fast PWM mode
and Phase/Frequency Correct mode. The constants zxFastPWM and zxCorrectPWM, having the values
0 and 1 respectively, may be used to specify the mode. The Fast PWM mode has a maximum frequency
of one-half of the CPU clock frequency and is intended for fixed-frequency applications. The
Phase/Frequency Correct PWM mode has a maximum frequency of one-quarter of the CPU clock
frequency and may be used when the PWM frequency will be changed in the midst of PWM signal
generation. Frequency changes are effected by making additional calls to OpenPWM() and the change is
synchronized so that it takes effect at the beginning of a cycle.
A side effect of calling OpenPWM() is that the timer busy flag for the underlying timer (e.g.
Register.Timer1Busy) will be set to True irrespective of its prior state. It is recommended that the
initial call to OpenPWM() be preceded by a call to acquire the semaphore for the timer. This will ensure
that an existing timer operation will not be disturbed.
Example
Call OpenPWM(1, 50.0, zxFastPWM) 'prepare for 50Hz Fast PWM using channel 1
Compatibility
This subroutine is not available in BasicX compatibility mode.
See Also