337
CHAPTER 14 8-BIT SERIAL I/O
;--------------------Interrupt processing routine----------------------------------------------------------
WARI
CLRB
SIOF
; Clears the interrupt request flag.
PUSHW
A
XCHW
A,T
; Saves A and T.
PUSHW
A
MOV
SDR,#55H
; Resets transfer data (55
H
).
SETB
SST
; Starts serial I/O transfer.
:
User processing
:
POPW
A
XCHW
A,T
; Returns A and T.
POPW
A
RETI
ENDS
; -------------------------------------------------------------------------------------------------------------------
END
■
Program Example for 8-bit Serial Input
●
Processing specifications
•
The 8-bit serial input program inputs 8-bit serial data from the SI pin of the 8-bit serial I/O. When serial
I/O transfer terminates, an interrupt occurs.
•
The program reads transfer data with the interrupt processing routine and inputs it continuously.
•
The program uses the external shift clock to be input from the SCK pin.
●
Coding example
DDR3
EQU
000DH
; Address of data direction register 3
SMR
EQU
0039H
; Address of serial mode register
SDR
EQU
003AH
; Address of serial data register
SSEL
EQU
003BH
; Address of serial/UART selection register
SIOF
EQU
SMR:7
; Defines the interrupt request flag bit.
SST
EQU
SMR:0
; Defines the serial I/O transfer start bit.
ILR4
EQU
007EH
; Address of interrupt request setting register 4
INT_V
DSEG
ABS
; [DATA SEGMENT]
ORG
0FFE2H
IRQC
DW
WARI
; Sets an interrupt vector.
INT_V
ENDS
;--------------------Main program---------------------------------------------------------------------------
CSEG
; [CODE SEGMENT]
; The stack pointer (SP), etc., is already initialized.
:
MOV
DDR3,#00000000B ; Sets the P30/SCK and P32/SI pins to input.
CLRI
; Disables interrupts.
CLRB
SST
; Stops serial I/O transfer.
MOV
ILR4,#11111101B ; Sets the interrupt level to 1.
Содержание F2MC-8L F202RA
Страница 2: ......
Страница 4: ......
Страница 32: ...16 CHAPTER 1 OVERVIEW ...
Страница 90: ...74 CHAPTER 3 CPU ...
Страница 142: ...126 CHAPTER 5 TIME BASE TIMER POPW A RETI ENDS END ...
Страница 150: ...134 CHAPTER 6 WATCHDOG TIMER ...
Страница 174: ...158 CHAPTER 7 8 BIT PWM TIMER User processing POPW A XCHW A T Restoring A and T POPW A RETI ENDS ...
Страница 176: ...160 CHAPTER 7 8 BIT PWM TIMER ...
Страница 220: ...204 CHAPTER 8 8 16 BIT CAPTURE TIMER COUNTER ...
Страница 240: ...224 CHAPTER 9 12 BIT PPG TIMER ...
Страница 258: ...242 CHAPTER 10 EXTERNAL INTERRUPT CIRCUIT 1 EDGE PUSHW A User processing POPW A XCHW A T POPW A RETI ENDS END ...
Страница 274: ...258 CHAPTER 11 EXTERNAL INTERRUPT CIRCUIT 2 LEVEL ...
Страница 362: ...346 CHAPTER 15 BUZZER OUTPUT ...
Страница 371: ...355 CHAPTER 16 WILD REGISTER FUNCTION 16 3 5 Data Test Set Register WROR A test register Do not access this register ...
Страница 390: ...374 CHAPTER 17 FLASH MEMORY ...
Страница 419: ...403 INDEX INDEX The index follows on the next page This is listed in alphabetic order ...
Страница 434: ...418 INDEX ...
Страница 436: ......