91精品综合久久久久久五月天_国产精品一区电影_中文字幕欧美日韩一区二区_亚洲一区二区三区精品动漫

Serial Peripheral Interface (SPI) of the CAN bus isolation extended design

I. Introduction

CAN bus is an effective support for distributed control and real-time control of serial data communication protocol, it is a multi-master bus, the network nodes can be any one of its own initiative at any time other nodes on the network to send information, regardless of master and slave, the priority between the node points, which means of communication and flexible; CAN may point to point, one-to-multipoint (group), and global broadcast and other ways to send and receive data; CAN non-destructive bit arbitration technique, priority send, you can greatly reduce the time the bus arbitration of conflict, in a good performance under heavy load performance.

Serial Peripheral Interface (SPI) of the CAN bus isolation extended design

CAN on the actual number of nodes up to 110, the communication medium can be twisted pair, coaxial cable or optical fiber, direct communication distances of up to 10km (transmission rate 5kbps); maximum communication speed up to 1Mbps (transmission distance to 40m). CAN protocol is the abolition of one of the greatest features of the traditional station address code, and replace the data block to encode communications, CAN data link layer frame structure with a short, each frame is 8 bytes, easy error correction. Industrial areas to meet the usual control commands, work status and the general requirements of test data. Meanwhile, the 8 bytes will not take the bus for too long, thus ensuring real-time communication.

CAN bus has a strong error correction capability, each frame has a CRC checksum and other information error detection measures to effectively reduce the data error rate. CAN node in the error serious cases, with automatic shut down function, so that other nodes on the bus is not affected. Support the differential transceiver, thus suitable for high-jamming environment.

We designed a CAN bus master from the communication control system shown in Figure 1, the control system inside and outside the control of two separate forms of CAN network to the main console to send commands and data, through the master-slave communication module and from the CAN network node communication subsystem control units on data acquisition and control. This system enables CAN bus nodes increased n times; CAN bus transmission rate and communication range greatly increased; also significantly enhanced anti-jamming capability.

This article discusses the main CAN bus communication control system from the master-slave communication module hardware and software design and implementation methods. Master-slave communication module of the console and the control unit from the CAN network data communications between the isolated extension of the communication data processing, transmission and control of CAN networks have some reference.

Second, the hardware design

Serial Peripheral Interface (SPI) of the CAN bus isolation extended design

Master-slave communication module control block diagram shown in Figure 2, the core chip is the TI TMS320C2000 family of companies in the digital control for a DSP. It includes a single chip 10-bit ADC, on-chip flash program memory, event management, digital input and output I / O port, etc.. In order to facilitate communication with various peripheral devices, DSP also provides some interfaces: CAN interface, serial peripheral interface (SPI), serial communication interface (SCI) and so on. Which, SPI interface is the industry standard synchronous serial interface, is a full-duplex, three-wire communications systems. It allows the DSP with a variety of peripheral devices to the serial method (can be configured as a 16-bit data while simultaneously sent and received) to communicate. In the SPI interface, the data transmission needs of a clock signal and two data lines. SPI can operate in master mode or slave mode. In the main mode, each data send / receive function requires a second clock; in from the model, each data clock signals are received only after the send / receive.

3, SPI works

1) SPI signal description

Communication control part of the Figure 2 diagram, two DSP chips use four wire direct SPI interface: serial clock line (SPICLK), the main chip input / output data lines from the film SPISOMI, the main chip output / input data line from the film SPISIMO and active-low chip select lines from SPISTE.

SPICLK is the main piece of the clock line, for the MISO data to send and receive clock signal provides synchronization. Each data transmission needs 1 clock function, and thus to send or receive a byte of data needs 1 to 16 clock effect. The clock is the main piece of hardware through the main film set, and and from the film SPICLK connected.
MISO is the main piece of input / output data lines from the film. The main piece of the MISO MISO should be connected from the film were high in the former data exchange. MOSI is the master SPI SPI interface chip output / input data from the chip pin. This pin should be connected to the main piece of data output and data input from the film MOSI, were high in the former data exchange.

SPISTE only way for LOW is selected from the from the film, the main piece SPISTE corresponding pin is configured as I / O port as from the film SPI chip select input pin.

Serial Peripheral Interface (SPI) of the CAN bus isolation extended design

2) the main mode

Can simultaneously send and receive work in the main mode. The salient features of the main mode is either sent or received always SPICLK signal, sending operation is to SPIDAT (or SPITXBUF) write data triggered. In the main mode, the role of the clock signal 1 corresponds to a data transmission (M0SI) and another data reception (MISO). Shown in Figure 3, in the main film data from the shift register issued from left to right sent from the film (MOSI), while the data from a film made from right to left into the main piece (MISO), after 16 clock cycles to complete a byte to send. Input bytes remain in the shift register, then SPI INT FLAG bit automatically set bit (if interrupt settings, then generate an interrupt), the shift register data will be latched to the SPIRXBUF, the subsequent read operation on SPIRXBUF the data read out.

3) From the model

Send and receive work simultaneously from the mode. The salient features from the model are: whether sending or receiving the signal must always be under the effect of the SPICLK and SPISTE signal must be valid. When SPISTE signal fails, the data sent and enter the data can not be regarded as invalid. This is because the input clock signal is the logical and operation with SPICLK, but SPICLK signal is SPISTE reversal. So that when SPISTE is high, there is no clock signal input. Send and receive data, the process of Figure 3 shows, similar to the main mode, only the data out shift register and enter the opposite direction.
4, software design

SPI communication with a CAN message sent 5 bytes as a unit of information exchange. Main chip control SPICLK signal can start at any one time packet transmission; from the film before sending the packet through the port line to the main chip to send an external interrupt request, the request success Houzhu chip output SPICLK signal to start from the film packet transmission. SPI interrupt from the film in major film to receive the message sent to; the main piece to complete the external interrupt reception of messages from the film. When the main piece and the film also has a message from the transmission, the system first major film packet transmission, and then send packets from the film.

1, the main chip to send, to receive messages from the film

The main chip to send messages, receiving messages from the chip software flow chart shown in Figure 4. The main chip to send a message from the film before the prohibition of the external interrupt, which is prohibited to send messages from the film. CAN transmit buffer and then take a message to send into the SPI register in, and then send the register from the SPI data were obtained from a byte write SPITXBUF start SPISIMO register data pins to send the same time, SPI interrupt from the piece started to receive a response to the main piece of data is sent, when a byte received from the film after triggering the main line through the mouth piece of XINT1 external interrupt to inform the main piece of data has been received, the main piece to respond to this XINT1 external After the break, and then send the next byte of data, when a packet transmission is completed, the main piece to the external interrupt is enabled to receive messages. End message received from the film after the completion flag set to receive messages to CPU for packet processing.

Serial Peripheral Interface (SPI) of the CAN bus isolation extended design

2, sent from the film, the main piece to receive messages

Send a message from the film, the main piece to receive messages software flowchart in Figure 5. From the film in sending messages, through a port line to the main chip to send a XINT1 external interrupt request packets to send, when the main piece to respond to this disruption, send a pseudo-data (such as # 0FFFFh) to tell from the film can begin to report send text from the test piece to the request packet receiving flag is set, then send the buffer from the CAN take a message to send into the SPI register in, and then send the register from the SPI, fetch a byte Data written to SPITXBUF register, through the mouth piece to the main line to send XINT1 external interrupts, asking permission to take the data chip, the main piece in the XINT1 interrupt service routine in the monitoring of the interrupt flag is set, the sending false data # 0FFFFh (start data from the chip sent SPICLK clock), then received byte into SPI buffer received from the film in turn will send a message is complete, clear message received flag. Completed a master piece after receiving messages, set message reception complete flag, and exit the external interrupt to CPU for packet processing.

Serial Peripheral Interface (SPI) of the CAN bus isolation extended design

3, the key technology of processing

CAN bus the transmission of information laws are not random, so I realize with SPI master and slave systems of information transmission must be considered when the data is transmitted from DSP1 to DSP2, we should prohibit the data from DSP2 DSP1 send to the contrary also natural. Otherwise, the data transfer process will be of mutual mistake or lost, affecting the normal operation of CPU. In order to avoid the main message is sent from the process of conflict, the main piece in the XINT1 interrupt service routine to complete a packet to receive, from the film in the SPI interrupt service routine to complete packet reception. During packet transmission, whether the main piece or from the film only when a packet transmission is completed, to proceed to the next frame message transmission. Lord, send the completed from the film every one byte of data, there is a response signal back to flags (see flag meaning) of the judge, in order to confirm whether the integrity of the data sent or received.

As the main chip holds the packet transmission clock signal that the initiative, so the main chip can always send packets. In the message sent from the film, we should first confirm whether the transmission is idle at this time the main piece, if this time the main chip is sending packets, waiting for the main piece from the film will send a complete packet, and then to transmit packets; if the main piece is in idle state transfer from the film can begin to send messages.

V. Conclusion

The CAN bus master from the communication control system plus a number of auxiliary control unit (such as the display control unit, keyboard, etc.) can be used as the main controller from the CAN network using CAN network anomalies in the console does not work, can assist control subsystem operation, the control system design has been applied.

Declined comment

91精品综合久久久久久五月天_国产精品一区电影_中文字幕欧美日韩一区二区_亚洲一区二区三区精品动漫
精品久久久久久综合日本| 日韩精品一区二区三区四区五区 | 欧美xxxx黑人又粗又长密月| 国产精品入口福利| 色老头一区二区三区| 久久久久久久久久久视频| 国产福利一区视频| 日韩中文字幕在线免费观看| 国产av熟女一区二区三区 | 日韩在线免费av| 日韩在线视频免费观看| 久久久精品久久久| 国产精品日韩欧美综合| 久青草国产97香蕉在线视频| 国产精品成久久久久三级| 中文字幕一区二区三区四区五区人| 亚洲欧洲精品一区| 日本伊人精品一区二区三区介绍| 日韩美女av在线免费观看| 欧美日韩国产综合在线| 海角国产乱辈乱精品视频| 免费人成在线观看视频播放| 国产又粗又猛又爽又黄的网站| 国产男女激情视频| 99视频日韩| 国产成人精品久久久| 久久久精品国产| 欧美成人一区在线| 亚洲一区免费看| 日韩欧美亚洲日产国产| 免费不卡av在线| 91精品国产综合久久香蕉| 国产成人免费91av在线| 欧美激情亚洲一区| 日韩免费在线看| 成人久久精品视频| 久久久国产精品免费| 欧美激情一区二区三区高清视频| 水蜜桃亚洲精品| 国产综合中文字幕| 国产激情美女久久久久久吹潮| 国产精品成人av性教育| 日韩成人手机在线| 国产视频观看一区| 久久草.com| 亚洲欧洲一二三| 精品无码一区二区三区爱欲| 久无码久无码av无码| 麻豆成人在线看| 日本不卡视频在线播放| 丰满人妻中伦妇伦精品app| www.xxxx欧美| 亚洲激情电影在线| 国产欧美日韩精品丝袜高跟鞋 | 91精品国产高清久久久久久91| 国产成人免费av电影| 亚洲熟妇无码另类久久久| 青草网在线观看| 69**夜色精品国产69乱| 欧美日韩xxxxx| 欧美精品成人网| 久久久久无码国产精品一区| 午夜精品一区二区三区av| 国产欧美精品在线播放| 日韩在线观看免费av| 午夜精品一区二区三区在线| 国产三区在线视频| 久久久国产91| 日本成人黄色免费看| 2019日本中文字幕| 中文字幕免费高| 国产日韩一区二区在线| 久久久久久久有限公司| 亚洲在线观看视频| 国产欧美久久久久| 国产精品国语对白| 欧美日韩激情视频在线观看| 久久久久久久久久网| 春日野结衣av| 成人av色在线观看| 97人人澡人人爽| www.亚洲天堂网| 国产精品激情av在线播放| 日本va中文字幕| 国产z一区二区三区| 色婷婷精品国产一区二区三区 | 国产亚洲精品久久久久久久 | 久久久久久久av| 日韩精品大片| 日韩中文字幕第一页| 欧美又大又粗又长| 国产成人精品一区二区在线| 欧美中文字幕视频| 日韩中文字幕国产精品| 欧美中在线观看| 久久精品中文字幕免费mv| 欧美日韩激情四射| 啊v视频在线一区二区三区| 日韩精品福利视频| 国产精品三区www17con| 国产在线视频不卡| 中文字幕一区二区三区四区五区| 99久热re在线精品视频| 少妇熟女一区二区| 日韩最新av在线| 国产一区二区网| 亚洲综合在线播放| 久久av二区| 欧美精品色婷婷五月综合| 国产精品偷伦视频免费观看国产| 蜜桃免费区二区三区| 欧美大片欧美激情性色a∨久久| 国产欧美日韩综合一区在线观看| 国产精品丝袜视频| 国产系列第一页| 亚洲精蜜桃久在线| 精品国产拍在线观看| 国产视频一区二区不卡| 午夜视频久久久| 久久久久免费视频| 国精产品99永久一区一区| 亚洲精品欧美一区二区三区| 色狠狠久久aa北条麻妃| 国产日韩欧美视频| 污视频在线免费观看一区二区三区| 久久精品一区二| 国产在线高清精品| 亚洲美女网站18| 国产精品免费一区二区三区都可以| 国产精品午夜一区二区欲梦| 日韩欧美手机在线| 欧美激情一二区| www.日韩视频| 高清视频在线观看一区| 日韩精品在线视频免费观看| 色综合色综合网色综合| 久久久久久综合网天天| 国产天堂在线播放| 日本高清不卡在线| 久久91精品国产| 九色在线视频观看| 97精品久久久| 韩国视频理论视频久久| 午夜精品久久久99热福利| 国产精品高潮呻吟久久av无限| 91精品国产高清久久久久久91裸体 | 国产欧美精品一区二区三区| 人人澡人人澡人人看欧美| 精品卡一卡二| 精品国产区一区二区三区在线观看| 国产片侵犯亲女视频播放| 欧洲日韩成人av| 亚洲第一综合| 久久久久久69| 色妞一区二区三区| 国产对白在线播放| 成人精品水蜜桃| 精品视频第一区| 久久中文字幕在线视频| 日韩中文字幕在线观看| 久无码久无码av无码| 国产精品亚洲精品| 国产日韩精品久久| 精品人妻一区二区三区四区在线| 岛国视频一区免费观看| 国产免费一区二区三区在线能观看| 日本高清不卡在线| 视频一区不卡| 欧美一区二区三区四区在线 | 国产精品久久久久国产a级| 久久久噜噜噜www成人网| 91国产丝袜在线放| 99久久精品免费看国产一区二区三区| 国产在线播放不卡| 好吊色欧美一区二区三区视频 | 国产伦精品一区二区三区视频孕妇 | 91精品国产乱码久久久久久久久| 国产日本欧美视频| 国产中文字幕视频在线观看| 欧日韩免费视频| 欧美在线视频一区| 秋霞无码一区二区| 欧美一区亚洲二区| 欧美综合在线播放| 欧美精品七区| 欧美性视频在线| 日韩亚洲欧美精品| 日韩人妻精品无码一区二区三区| 日韩中文字幕亚洲精品欧美| 日本精品中文字幕| 日韩免费av在线| 欧美日韩一区二区在线免费观看| 欧美亚洲日本黄色| 免费国产黄色网址| 国产日韩在线亚洲字幕中文| 国产精品一区二区三区四区五区| 国产麻豆一区二区三区在线观看| 国产免费黄色小视频| 成 年 人 黄 色 大 片大 全 | 中文字幕日韩一区二区三区|