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精品综合久久久久久五月天_国产精品一区电影_中文字幕欧美日韩一区二区_亚洲一区二区三区精品动漫
国产日韩精品综合网站| 亚洲欧洲精品一区二区 | 国产美女久久精品香蕉69| 久久综合色影院| 91久久国产综合久久91精品网站 | 欧美日韩一区二区三| 久久99精品久久久久久琪琪| 97免费视频在线播放| 日韩精品不卡| 色综合视频网站| 日韩在线视频观看| 国产精品一区二区三区久久| 日本高清视频一区二区三区| 久久夜色精品国产欧美乱| 91国视频在线| 国产欧美日韩中文字幕| 日本高清+成人网在线观看| 国产精品第12页| 国产成人亚洲精品无码h在线| 美女视频久久| 日韩亚洲欧美一区二区| 中文字幕久精品免| 国产精品嫩草在线观看| 久久免费视频网| 国产精品亚洲a| 欧美精品卡一卡二| 性欧美长视频免费观看不卡| 久久电影一区二区| 久久av免费观看| 97精品一区二区视频在线观看| 蜜臀av性久久久久蜜臀av| 日韩av一二三四区| 欧美精品videos| 国产精品美女久久久免费| 国产成人精彩在线视频九色| 99在线免费视频观看| 国产一区二区黄色| 欧美国产视频一区| 日韩精品 欧美| 性亚洲最疯狂xxxx高清| 亚洲一区二区三区视频播放| 久久综合久久八八| 国产精品视频男人的天堂| 久久久久久久色| 国产成人精品久久久| 久久久视频精品| 成年人网站国产| 国产免费观看高清视频| 蜜桃视频一区二区在线观看| 欧美视频在线观看网站| 秋霞在线观看一区二区三区| 日韩视频在线视频| 日韩中字在线观看| 天堂一区二区三区| 少妇人妻在线视频| 日韩在线观看a| 午夜一区二区三视频在线观看| 在线亚洲美日韩| 中国成人亚色综合网站| 欧美激情亚洲自拍| 久久伊人免费视频| 国产精品视频久| 久久久国产视频| 国产精品手机在线| 国产精品久久久久久五月尺| 久久视频国产精品免费视频在线 | 国产日本欧美在线| 国产一级黄色录像片| 国产在线观看一区二区三区| 国产一区二区丝袜| 国产精品香蕉av| av日韩一区二区三区| 99在线免费观看视频| 99热一区二区三区| 久久久999视频| 久久精品第九区免费观看| 国产激情999| 久久久久免费视频| www.日本久久久久com.| 久久久久www| 欧美成人午夜剧场免费观看| 久久久久久国产精品美女| 亚洲午夜精品一区二区| 亚洲欧洲精品一区二区三区波多野1战4 | 日韩精品 欧美| 黄色一级视频在线播放| 精品少妇人妻av一区二区| 国产一区二区三区小说| 国产欧美韩国高清| 91高潮在线观看| 日韩视频精品在线| 精品国产电影| 电影午夜精品一区二区三区 | 国产精品视频免费在线观看| 久久综合88中文色鬼| 欧美精品久久一区二区| 亚洲.欧美.日本.国产综合在线| 奇米影视首页 狠狠色丁香婷婷久久综合| 欧美性在线观看| 国产日韩在线一区| 91国产在线播放| xxav国产精品美女主播| 精品免费久久久久久久| 午夜免费福利小电影| 欧美精品在欧美一区二区| 国产人妻互换一区二区| 7777在线视频| 国产精品麻豆va在线播放| 亚洲综合激情五月| 欧美在线www| 国产精品夜夜夜爽张柏芝| 国产成人精品免费久久久久| 国产精品流白浆视频| 亚洲欧美日韩另类精品一区二区三区| 日韩免费毛片| 国产免费一区二区三区在线能观看 | 免费观看精品视频| 91成人免费观看| 国产精品成人观看视频免费| 午夜精品久久久久久99热| 国模私拍视频一区| 久久久之久亚州精品露出| 久久亚洲影音av资源网| 色欲av无码一区二区人妻| 国产一区二区久久久| 久艹在线免费观看| 一区二区三区在线观看www| 欧美在线一级va免费观看| 国产精品亚洲自拍| www.久久久久| 亚洲乱码国产一区三区| 国语自产精品视频在线看一大j8| 99色精品视频| 国产精品高清免费在线观看| 日本一区视频在线| 成人一区二区av| 久久久精品在线| 日本香蕉视频在线观看| 国产精品一区=区| 国产精品久久久久久久久久直播 | 国内精品久久久久影院优| 久久久av水蜜桃| 欧美激情网友自拍| 女女同性女同一区二区三区91 | 欧美日韩精品免费观看| 久久久在线视频| 伊人久久青草| 国内精品免费午夜毛片| 久久久久久久久久久免费精品| 亚洲最大激情中文字幕| 国产欧美日韩综合一区在线观看| 日韩中文字幕亚洲| 天堂资源在线亚洲视频| 国产精品自拍偷拍视频| 国产精品美女久久久久av福利| 日本免费a视频| 成人av.网址在线网站| 精品久久久久久综合日本| 欧美日韩一区二区视频在线| 久久久久久久久久久久久国产精品 | caoporn国产精品免费公开| 国产精品嫩草影院一区二区| 日韩欧美亚洲日产国产| 91精品国产色综合| 亚洲欧美久久久久一区二区三区| 国产精品一区二区在线观看| 久久夜精品香蕉| 国模杨依粉嫩蝴蝶150p| 国产精品青青草| 欧美福利一区二区三区| 国产成人精品在线观看| 日韩欧美猛交xxxxx无码| 国产成人aa精品一区在线播放| 亚洲.欧美.日本.国产综合在线| 99中文字幕| 亚洲bt天天射| 99久久国产宗和精品1上映| 一区二区视频国产| www精品久久| 川上优av一区二区线观看| 久久久久久av无码免费网站下载| 日韩在线国产| 久久久久亚洲精品国产| 日本黄网站色大片免费观看| 国产xxxxx视频| 日韩欧美一区二区在线观看| 久久久久久噜噜噜久久久精品| 欧美专区在线播放| 国产精品美女av| 国产在线精品二区| 国产99久久精品一区二区| 国产欧美精品在线播放| 久久99视频精品| www.日日操| 视频一区免费观看| 久久久久久久久久久久久9999 | 国产欧美日韩视频一区二区三区| 久久99热精品这里久久精品| 成人在线精品视频| 午夜肉伦伦影院|