Fujitsu F202RA, MB89202 manual Program Example for Uart, Program specifications

Models: F202RA MB89202

1 436
Download 436 pages 36.13 Kb
Page 327
Image 327

CHAPTER 13 UART

13.7Program Example for UART

This section provides program example for UART.

Program Example for UART

Program specifications

Serial data transfer is implemented using the UART communication functions.

The P30/UCK/SCK, P31/UO/SO, and P32/UI/SI pins are used for communication.

The transfer rate is set to 300 bps using the internal baud rate generator.

13H is transmitted from the UO pin, and data is received by interrupts.

The baud rate is the oscillation frequency (FCH = 12.5 MHz) at the maximum gear speed (1 instruction cycle = 4/FCH). The clock divider is 2.5. (1/375 bps = 8320 tINST)

Coding example

PDR3

EQU

000CH

;

Port data register address

DDR3

EQU

000DH

;

Port direction register address

SSEL

EQU

003BH

;

Serial selection register address

SMC

EQU

0028H

;

Serial mode control register address

SRC

EQU

0029H

;

Serial rate control register address

SSD

EQU

002AH

;

Serial status and data register address

SIDR

EQU

002BH

;

Serial input data register address

SODR

EQU

002BH

;

Serial output data register address

UPC

EQU

002CH

;

Clock divider selection register address

ILR2

EQU

007CH

;

Interrupt level setting register address

INT_V

DSEG

ABS

;

[DATA SEGMENT]

 

ORG

0FFEEH

 

 

IRQ6

DW

WARI2

;

Reception interrupt vector setting

IRQ5

DW

WARI1

;

Transmission interrupt vector setting

INT_V

ENDS

 

 

 

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

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

 

 

CSEG

 

;

[CODE SEGMENT]

 

 

 

; The stack pointer (SP) and related components have to be

 

 

 

 

initialized.

 

:

 

 

 

 

CLRI

 

;

Disable interrupts.

 

MOV

ILR2,#11101011B

;

Set an interrupt level (level 1).

 

MOV

UPC,#11111010B

;

Allow operation with the clock whose frequency is divided

 

 

 

 

by 2.5.

 

MOV

SSEL,#00000000B

;

Select UART.

 

MOV

DDR3,#00000000B

;

Set the UI pin as the input pin.

 

MOV

SMC,#01011011B

;

Set non-parity, the number of stop bits 1, and operating

311

Page 327
Image 327
Fujitsu F202RA, MB89202 manual Program Example for Uart, Program specifications

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.