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精品综合久久久久久五月天_国产精品一区电影_中文字幕欧美日韩一区二区_亚洲一区二区三区精品动漫
久久久久欧美| 欧美亚洲一区在线| 欧美激情 国产精品| 久久久久久久久久福利| 日本久久久网站| 91国偷自产一区二区三区的观看方式 | 日本一区视频在线观看| 久久久天堂国产精品女人| 午夜精品一区二区三区av| 久久精品午夜一区二区福利| 日本精品久久电影| 日韩中文字幕免费看| 日本在线观看不卡| 国产成人无码av在线播放dvd | 国产色视频一区| 久久亚洲欧美日韩精品专区| 国产亚洲精品久久久久久久| 不用播放器成人网| 国产伦理一区二区三区| 亚洲一区二区三区精品在线观看 | 视频直播国产精品| 欧美性资源免费| 国产精品狼人色视频一区| 国产精品一码二码三码在线| 午夜精品一区二区三区av| 久久精品日产第一区二区三区乱码| 青青青青草视频| 九九热精品视频在线播放| 91国产丝袜在线放| 日本10禁啪啪无遮挡免费一区二区| 久久精品国产电影| 国产精品亚洲一区二区三区| 日本在线观看一区二区| 国产精品国产亚洲精品看不卡| 高清欧美性猛交| 日韩精品久久一区| 国产精品欧美激情在线播放| www精品久久| 欧美亚洲成人网| 国产99久久精品一区二区 | 国产一区精品视频| 欧美一区二区激情| 国产精品久久久久久av| 99视频在线免费| 秋霞无码一区二区| 美日韩精品免费观看视频| 国产高清www| 国产美女久久精品| 欧美性在线视频| 亚洲v国产v| 色综合导航网站| 日韩在线视频网| 99免费在线视频观看| 欧美精品一区二区三区三州| 亚洲欧洲免费无码| 国产精品视频福利| 久久日韩精品| 国产性生活免费视频| 日韩免费在线免费观看| 欧美激情亚洲视频| 久久久精品一区二区三区| 国产精品99免视看9| 国产一区二区不卡视频在线观看| 日韩精品一区二区三区电影| 中文字幕久精品免| 国产精品久久综合av爱欲tv| 久久riav| 8050国产精品久久久久久| 国产欧亚日韩视频| 欧美激情亚洲天堂| 日韩视频一二三| 亚洲 国产 日韩 综合一区| 美女精品视频一区| 久久精品一偷一偷国产| 91久久久国产精品| 国产偷人视频免费| 韩国日本不卡在线| 欧美资源一区| 日韩小视频在线播放| 色香蕉在线观看| 亚洲一区二区三区在线观看视频 | 久久国产一区| 91久久精品国产91性色| 国内精品视频免费| 欧美性天天影院| 热99久久精品| 日韩欧美黄色大片| 日本一区二区在线视频观看| 天天夜碰日日摸日日澡性色av| 久久久久国产精品一区| 欧美理论电影在线观看| 国产精品视频男人的天堂| 久久久久五月天| 久久久久久一区二区三区| 国产成人精品a视频一区www| 91av在线精品| 91成人免费视频| 91精品国产乱码久久久久久蜜臀| 国产欧美日韩小视频| 国产一区二区丝袜| 国产日韩在线播放| 国产欧洲精品视频| 成人精品视频99在线观看免费| 国产婷婷一区二区三区| 国产综合视频在线观看| 精品一区二区日本| 国产一区福利视频| 国产情侣av自拍| 国产日韩亚洲欧美| 国产精品一区二区三区免费视频| 成人国产精品色哟哟| 99精品免费在线观看| 国产精品69精品一区二区三区| 福利在线一区二区| 99在线热播| 国产对白在线播放| 日韩中文字幕在线看| 国产精品视频区| 久久福利网址导航| 亚洲国产精品久久久久婷婷老年| 欧美一区二区三区艳史| 日本女人高潮视频| 欧美性受xxxx黑人猛交| 黄频视频在线观看| 国产肉体ⅹxxx137大胆| 隔壁老王国产在线精品| 久久久一本二本三本| 日韩亚洲欧美中文高清在线| 国产成人欧美在线观看| 国产精品高潮呻吟久久av野狼| 欧美激情中文字幕在线| 视频在线99re| 欧美精品亚洲精品| 国产伦精品一区| 国产成人激情视频| 国产精品电影观看| 亚洲人成人77777线观看 | 操91在线视频| 午夜啪啪福利视频| 欧美日韩一区在线播放| 国产一级黄色录像片| 91国产精品91| 久久精品国产精品亚洲| 欧美激情久久久久| 日本成人在线不卡| 国产日韩欧美黄色| 国产成人精品福利一区二区三区 | 久久久精品国产网站| 中文字幕一区二区三区在线乱码| 色综合av综合无码综合网站| 欧美久久久久久久久久久久久| 国产精品一区二区三区在线| 色婷婷综合成人av| 欧美激情第三页| 日韩精品一区中文字幕| 国产伦视频一区二区三区| 久久久久久欧美| 萌白酱国产一区二区| 日本精品视频在线| 国产精品中出一区二区三区| 国产v亚洲v天堂无码久久久| 欧美成人中文字幕在线| 日韩一级免费看| 成人久久18免费网站图片| 久久久久久久久久久免费精品| 精品久久久久久久免费人妻| 日韩日韩日韩日韩日韩| 国产精品香蕉视屏| 国产精品偷伦一区二区| 熟妇人妻va精品中文字幕| 国产亚洲情侣一区二区无| 丝袜美腿精品国产二区| 亚洲色欲综合一区二区三区| 黄色三级中文字幕| 国产黑人绿帽在线第一区| 美女av一区二区三区 | 日本精品一区二区三区视频| 成人91免费视频| 国产精品国产精品| 日韩欧美三级一区二区| 亚洲一区免费看| 国产精品国产三级国产专区53| 亚洲视频在线二区| 欧美视频在线观看网站| dy888夜精品国产专区| 久久久www成人免费精品| 亚洲精品国产精品久久| 蜜臀久久99精品久久久酒店新书| 91国产在线精品| 国产精品精品软件视频| 少妇av一区二区三区无码 | 热久久视久久精品18亚洲精品| 99精品免费在线观看| 久久99久久99精品免观看粉嫩| 精品欧美一区二区在线观看视频| 久久9精品区-无套内射无码| 欧美一级免费播放| 国产国语刺激对白av不卡| 亚洲国产一区二区三区在线| 成人精品久久av网站|