COP8CCE9IMT7/NOPB National Semiconductor, COP8CCE9IMT7/NOPB Datasheet - Page 47

MCU 8BIT FLASH 8K MEM 48-TSSOP

COP8CCE9IMT7/NOPB

Manufacturer Part Number
COP8CCE9IMT7/NOPB
Description
MCU 8BIT FLASH 8K MEM 48-TSSOP
Manufacturer
National Semiconductor
Series
COP8™ 8Cr
Datasheet

Specifications of COP8CCE9IMT7/NOPB

Core Processor
COP8
Core Size
8-Bit
Speed
10MHz
Connectivity
Microwire/Plus (SPI), UART/USART
Peripherals
Brown-out Detect/Reset, POR, PWM, WDT
Number Of I /o
39
Program Memory Size
8KB (8K x 8)
Program Memory Type
FLASH
Ram Size
256 x 8
Voltage - Supply (vcc/vdd)
2.7 V ~ 5.5 V
Data Converters
A/D 16x10b
Oscillator Type
Internal
Operating Temperature
-40°C ~ 125°C
Package / Case
48-TSSOP
Data Bus Width
8 bit
Maximum Clock Frequency
10 MHz
Data Ram Size
256 B
On-chip Adc
10 bit, 16 channel
Number Of Programmable I/os
37
Number Of Timers
2
Height
0.9 mm
Interface Type
SPI, USART
Length
12.5 mm
Maximum Operating Temperature
+ 125 C
Minimum Operating Temperature
- 40 C
Supply Voltage (max)
5.5 V
Supply Voltage (min)
2.7 V
Width
6.1 mm
Lead Free Status / RoHS Status
Lead free / RoHS Compliant
Eeprom Size
-
Lead Free Status / Rohs Status
 Details
Other names
COP8CCE9IMT7
14.0 USART
14.4 USART OPERATION
The USART has two modes of operation: asynchronous
mode and synchronous mode.
14.4.1 Asynchronous Mode
This mode is selected by resetting the SSEL (in the ENUI
register) bit to zero. The input frequency to the USART is
16 times the baud rate.
The TSFT and TBUF registers double-buffer data for trans-
mission. While TSFT is shifting out the current character on
the TDX pin, the TBUF register may be loaded by software
with the next byte to be transmitted. When TSFT finishes
transmitting the current character the contents of TBUF are
transferred to the TSFT register and the Transmit Buffer
Empty Flag (TBMT in the ENU register) is set. The TBMT
flag is automatically reset by the USART when software
loads a new character into the TBUF register. There is also
the XMTG bit which is set to indicate that the USART is
transmitting. This bit gets reset at the end of the last frame
(end of last Stop bit). TBUF is a read/write register.
The RSFT and RBUF registers double-buffer data being
received. The USART receiver continually monitors the sig-
nal on the RDX pin for a low level to detect the beginning of
a Start bit. Upon sensing this low level, it waits for half a bit
time and samples again. If the RDX pin is still low, the
receiver considers this to be a valid Start bit, and the remain-
ing bits in the character frame are each sampled three times
around the center of the bit time. Serial data input on the
RDX pin is shifted into the RSFT register. Upon receiving the
complete character, the contents of the RSFT register are
copied into the RBUF register and the Received Buffer Full
Flag (RBFL) is set. RBFL is automatically reset when soft-
ware reads the character from the RBUF register. RBUF is a
read only register. There is also the RCVG bit which is set
high when a framing error or a break detect occurs and goes
low once RDX goes high.
The USART receive state machine can hang after receiving
a frame error or detecting a Line Break condition. The lockup
can be cleared by setting the USART in internal loopback
mode and switching to synchronous operation for a short
time. For faster baud rates, there is no need for a timing loop.
The code that is included works for 300 baud with the device
running on a 10MHz crystal. (2MHz instruction clock, instruc-
tion cycles for 1/16 bit time delay). At baud rates
baud (
required. In the following example the UART was initialized
as follows:
PSR = C9
BAUD = 40
ENU = 01 ; 8 bits, no parity
;Remember that at the end of the code,
;the PSR and ENU must be restored to
;whatever setting the application requires.
CLERR:
LD ENU, #018 ;Temporarily go into
;loop back mode
SBIT SSEL,ENUI ;Then into synchronous mode
LD 0F1,#69 ;Delay loop timing -
;(6*69-2)/2 = 206uS
LOOP3: ;Bit time/16=208.33uS
DRSZ 0F1 ;Following instructions
;make up the difference
JP LOOP3
LD A, ENUR ;Clear the error flags
>
= 4800 baud with a 5MHz xtal) no timing loop is
(Continued)
>
= 9600
47
LD A, RBUF ;Clear RBFL
RBIT SSEL,ENUI ;Back to asynch mode
LD PSR,#000 ;Stop USART clock
;before restarting
LD ENU, #000 ;Replace with normal ENU value
LD PSR,#0C9 ;Restore the PSR
;to restart the USART
RET
The same subroutine works for a break detect, but you need
to be careful. If the break is still in force when the PSR is
restored, another break detect will occur. The part could
easily end up spending all of it’s cycles just handling break
detects. The user may wish to delay handling break detects
until RDX goes high (poll the pin periodically, or use MIWU).
14.4.2 Synchronous Mode
In this mode data is transferred synchronously with the
clock. Data is transmitted on the rising edge and received on
the falling edge of the synchronous clock.
This mode is selected by setting SSEL bit in the ENUI
register. The input frequency to the USART is the same as
the baud rate.
When an external clock input is selected at the CKX pin, data
transmit and receive are performed synchronously with this
clock through TDX/RDX pins.
If data transmit and receive are selected with the CKX pin as
clock output, the device generates the synchronous clock
output at the CKX pin. The internal baud rate generator is
used to produce the synchronous clock. Data transmit and
receive are performed synchronously with this clock.
14.5 FRAMING FORMATS
The USART supports several serial framing formats (Figure
23). The format is selected using control bits in the ENU,
ENUR and ENUI registers.
The first format (1, 1a, 1b, 1c) for data transmission (CHL0 =
1, CHL1 = 0) consists of Start bit, seven Data bits (excluding
parity) and one or two Stop bits. In applications using parity,
the parity bit is generated and verified by hardware.
The second format (CHL0 = 0, CHL1 = 0) consists of one
Start bit, eight Data bits (excluding parity) and one or two
Stop bits. Parity bit is generated and verified by hardware.
The third format for transmission (CHL0 = 0, CHL1 = 1)
consists of one Start bit, nine Data bits and one or two Stop
bits. This format also supports the USART “ATTENTION”
feature. When operating in this format, all eight bits of TBUF
and RBUF are used for data. The ninth data bit is transmitted
and received using two bits in the ENU and ENUR registers,
called XBIT9 and RBIT9. RBIT9 is a read only bit. Parity is
not generated or verified in this mode.
The parity is enabled/disabled by PEN bit located in the ENU
register. Parity is selected for 7- and 8-bit modes only. If
parity is enabled (PEN = 1), the parity selection is then
performed by PSEL0 and PSEL1 bits located in the ENU
register.
Note that the XBIT9/PSEL0 bit located in the ENU register
serves two mutually exclusive functions. This bit programs
the ninth bit for transmission when the USART is operating
with nine data bits per frame. There is no parity selection in
this framing format. For other framing formats XBIT9 is not
needed and the bit is PSEL0 used in conjunction with PSEL1
to select parity.
The frame formats for the receiver differ from the transmitter
in the number of Stop bits required. The receiver only re-
quires one Stop bit in a frame, regardless of the setting of the
www.national.com

Related parts for COP8CCE9IMT7/NOPB