Table of Contents
What is the register that controls the working mode of the serial port?
Home Common Problem What is the register that controls how the serial port works?

What is the register that controls how the serial port works?

Jul 22, 2022 am 10:53 AM
register

The register that controls the working mode of the serial port is SCON, which is the serial port control register; SCON is used to control the selection, reception and transmission of serial communication methods, indicating the status of the serial port. SCON can be used as a byte Addressing can also be bit addressing, the byte address is "98H" and the address bits are "98H~9FH".

What is the register that controls how the serial port works?

The operating environment of this tutorial: Windows 10 system, DELL G3 computer.

What is the register that controls the working mode of the serial port?

The register that controls the working mode of the serial port is SCON

SCON (Serial Control Register) The serial port control register is used to control the mode selection, reception and transmission of serial communication, and indicates the status of the serial port. SCON can be either byte addressable or bit addressable. Its byte address is 98H and the address bits are 98H~9FH.

Structure:

What is the register that controls how the serial port works?

Working method (SM0 SM1)

(1) Mode 0 (SM0 SM1:0 0): The working mode 0 of the serial port is the shift register I/O mode, which can be connected to an external shift register, an expansion I/O port, or an external synchronous I/O device. Sending operation: When executing a "MOVSBUF,A" instruction, the sending operation is started, the shift pulse is output by TXD, and the data in SBUF is serialized by RXD. After sending 8-bit data, TI=1 is automatically set and an interrupt is requested. To continue sending, TI must be cleared by an instruction. Receiving operation: REN is the serial port reception enable control bit. When REN=0, reception is prohibited; when REN=1, reception is allowed. When the software sets REN to "1", it starts inputting data from the RXD port at the fosc/12 baud rate. When 8-bit data is received, the interrupt flag RI is set to "1". Before receiving data again, RI must be cleared to 0 by software.

(2) Mode 1 (SM0 SM1:0 1): The serial port is a 10-bit universal asynchronous interface. The data information sent or received in one frame is 10 bits, including 1 start bit "0", 8 data bits, and 1 stop bit "1". Send data: Data is output from the TXD port. When the data is written into the send buffer SBUF, the transmitter is started to send. After sending one frame of data, set the interrupt flag TI=1, apply for an interrupt, and notify the CPU that the next data can be sent. Receive data: First set REN = 1 (allow receiving data), the serial port receives data from RXD, when the sample transitions from 1 to 0, it is confirmed that the start bit is "0", and a frame of data starts to be received. When one frame of data is completed, set the interrupt flag RI=1, apply for an interrupt, and notify the CPU to take the received data from SBUF.

(3) Mode 2 (SM0 SM1:1 0): The serial port is an 11-bit asynchronous communication interface. Sending or receiving a frame of information includes 1 start bit "0", 8 data bits, 1 programmable bit, and 1 stop bit "1". Sending data: Before sending, first set TB8 to "parity bit" or "data identification bit" by software according to the communication protocol, and then write the data to be sent into SBUF to start the transmitter. The transmission process is started by executing any instruction with SBUF as the destination register, loading 8-bit data into SBUF, and also loading TB8 into the 9th bit of the transmission shift register, and then starting from TXD (P3.1) The port outputs one frame of data. Receiving data: Set REN=1 first to enable the serial port to receive data, and also clear RI to "0". Then, based on the status of SM2 and the status of the received RB8, it is decided whether the serial port sets RI=1 after the information arrives, and applies for an interrupt to notify the CPU to receive the data. When SM2=0, regardless of whether RB8 is "0" or "1", RI=1 is set, and this serial port will receive the sent information. When SM2=1 and RB8=1, it means that in the case of multi-machine communication, the received information is "address frame". At this time, set RI=1, and the serial port will receive the incoming address. When SM2=1 and RB8=0, it means that in the case of multi-machine communication, the received information is a "data frame", but it is not sent to the slave. At this time, RI is not set to "1", so the received information in SBUF The data frame will be lost.

(4) Mode 3 (SM0 SM1:1 1): It is an 11-bit asynchronous communication mode with variable baud rate. Except for the difference in baud rate, the other modes are the same as Mode 2.

For more related knowledge, please visit the FAQ column!

The above is the detailed content of What is the register that controls how the serial port works?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the register that stores the offset address in the code segment? What is the register that stores the offset address in the code segment? Jan 22, 2021 pm 01:54 PM

The register that stores the offset address in the code segment is: the instruction pointer register. The instruction pointer register IP is used to control the execution sequence of instructions in the program; during normal operation, the IP contains the offset address of the next instruction (byte) to be fetched by the BIU. Under normal circumstances, the instruction code is accessed from memory every time , the IP will automatically increase by 1 to ensure the sequential execution of instructions.

In-depth understanding of Go language's control of registers In-depth understanding of Go language's control of registers Apr 04, 2024 am 09:51 AM

The Go language optimizes performance by allowing direct control of CPU registers through assembly instructions: registers are temporary locations in the CPU where data is stored. The Go language provides assembly instructions through the asm package, which can be used to access x86 and ARM registers. Assembly instructions avoid the memory allocation overhead of iterators and improve loop performance. Caution is required when using assembly instructions due to platform and system dependencies, potential program crash risks, and the use-only-when-necessary principle.

What is a device that contains a small amount of data stored in the CPU called? What is a device that contains a small amount of data stored in the CPU called? Jul 18, 2022 pm 04:29 PM

It's called a "register". Registers are small storage areas used to store data inside the CPU. They are used to temporarily store data and operation results involved in operations. The function of the register is to store binary codes, which are composed of flip-flops with storage functions; one flip-flop can store 1-bit binary code, so a register that stores n-bit binary codes needs n flip-flops.

What is the register that controls how the serial port works? What is the register that controls how the serial port works? Jul 22, 2022 am 10:53 AM

The register that controls the working mode of the serial port is SCON, which is the serial port control register; SCON is used to control the selection, reception and transmission of serial communication methods, and indicates the status of the serial port. SCON can be both byte-addressed and bit-addressed. address, the byte address is "98H", and the address bits are "98H~9FH".

In C language, what is the register storage class? In C language, what is the register storage class? Aug 30, 2023 am 09:45 AM

There are four storage classes in the C programming language, namely: autoexternstaticregister. The keyword of the register variable is register. The value of a register variable is stored in the CPU's register instead of in memory, where ordinary variables are stored. Registers are temporary storage units in the CPU. They allow register variables to have faster access times than ordinary variables. Example 1 The following is the register storage class of the C program: Demonstration #include<stdio.h>main(){ registerinti;&

Can go language control registers? Can go language control registers? Aug 24, 2023 pm 01:41 PM

The Go language cannot directly control registers. The Go language is limited in its ability to access registers because the design goal of the Go language is to provide a safer and easier-to-use programming environment rather than directly accessing hardware. Although the registers cannot be controlled directly, some mechanisms are provided to interact with the hardware. Developers can use these interfaces to communicate with external devices and control their behavior. The Go language also provides some low-level programming capabilities to bypass the restrictions of the type system and directly access memory.

Analyze the Go language's ability to manipulate registers Analyze the Go language's ability to manipulate registers Apr 03, 2024 pm 09:03 PM

The Go language provides access to and operations on registers through assembly inlining. Program performance can be significantly improved by using registers such as integer registers, floating point registers, and vector registers. Through a practical case demonstration of optimizing integer multiplication operations, this article shows how to use registers for efficient low-level operations to create faster Go applications.

Research on register control capabilities of Go language Research on register control capabilities of Go language Apr 04, 2024 am 08:09 AM

The Go language provides limited control over registers, allowing low-level optimizations. Assembly instructions (MOVQ, MOVL, MOVB, ADDQ, SUBQ) can be used to control registers, but they need to be used with caution to avoid breaking register references in the garbage collection mechanism. In addition, the use of assembly instructions requires knowledge of assembly language and is platform dependent.