CHAPTER 7 8-BIT PWM TIMER

Program Example of PWM Timer Functions

Processing specifications

A PWM wave with a duty ratio of 50% is generated. The duty ratio is then changed to 25%.

No interrupt occurs.

When the count clock is 16 tINST of an internal count clock, the cycle of the PWM wave is 16 4/12.5 MHz 256 = 1.3107 ms, which occurs when the top speed of the gear (one instruction cycle = 4/FCH) is

obtained at an oscillation frequency of 12.5 MHz.

The COMR register value with a duty ratio of 50% is shown below. COMR register value = 50/100 256 = 128 (080H)

Coding example

CNTR

EQU

0022H

; Address of the PWM control register

COMR

EQU

0023H

; Address of the PWM compare register

TPE

EQU

CNTR:3

; Defining the bit to enable the counter operation

;------------------------

Main program---------------------------------------------------------------------------------

 

CSEG

 

; [CODE SEGMENT]

 

:

 

 

 

CLRB

TPE

; Stopping the counter operation

 

MOV

COMR,#80H

; Specification of the H-level width of a pulse, 50% duty

 

 

 

ratio

 

MOV

CNTR,#10011010B

; PWM timer operation, selection of 16 tINST

 

 

 

; Starting the counter operation, clearing the interrupt

 

 

 

request flag

 

 

 

; Enabling the output of the PWM pin, disabling the output

 

 

 

of interrupt requests

 

:

 

 

 

:

 

 

 

MOV

COMR,#40H

; Changing the duty ratio to 25% (Takes effect at the next

 

 

 

cycle of the PWM wave.)

 

:

 

 

 

ENDS

 

 

;---------------------------------------------------------------------------------------------------------------------

 

 

 

END

 

 

159

Page 175
Image 175
Fujitsu F202RA, MB89202 manual Program Example of PWM Timer Functions, 159

F202RA, MB89202 specifications

The Fujitsu MB89202 and F202RA microcontrollers are part of the 16-bit microcontroller family, renowned for their robust performance and versatility in a variety of embedded system applications. These devices are tailored for high-efficiency operation across diverse industries, including automotive, consumer electronics, and industrial automation.

One of the main features of the MB89202 is its powerful CPU core, which operates at a clock speed of up to 20 MHz. This enables the microcontroller to perform complex calculations and consumer-grade applications seamlessly. The architecture is designed to handle multiple tasks effectively, making it suitable for real-time operations.

Memory capacity is a vital characteristic of the MB89202, featuring on-chip RAM and ROM configurations. The microcontroller can accommodate different memory variants, providing developers with flexibility in memory allocation based on their application requirements. This adaptability facilitates applications ranging from simple control systems to complex data processing tasks.

The F202RA variant extends the capabilities of the MB89202 by integrating advanced peripheral functions. It includes built-in timers, A/D converters, and serial communication interfaces, which are essential for interfacing with other hardware components or sensors. The availability of these peripherals reduces the need for additional external circuits, thus contributing to a more compact and cost-effective design.

In terms of power management, the MB89202 series employs advanced power-saving technologies. The microcontroller offers various low-power modes, enabling devices to conserve energy during idle times, making it highly suitable for battery-operated applications. This characteristic not only enhances the efficiency of devices but also extends their operational lifespan.

Moreover, the Fujitsu MB89202 series incorporates robust protection features, including watchdog timers and failure detection mechanisms. These safety features ensure reliable operation in critical systems, making them a preferred choice in applications where failure is not an option.

The MB89202 and F202RA microcontrollers also support a range of development tools and environments, including integrated development environments (IDEs) and software libraries, which facilitate rapid application development. With these tools, developers can efficiently prototype, debug, and optimize their applications.

In summary, the Fujitsu MB89202 and F202RA microcontrollers stand out with their efficient performance, extensive memory options, integrated peripherals, and power-saving capabilities, making them ideal for a wide array of embedded applications. Their reliability and robustness further enhance their attractiveness for designers seeking advanced microcontroller solutions.