A digital bus station kiosk system based on ARM7 and CPLD architecture is proposed. The system communicates with the bus control center in real time through the GPRS module, and uses CA authentication to ensure the security of communication. Two SRAMs are used to form a “ping-pong logic†cache to ensure the continuity of display data, which can realize multiple line information dynamics of the same station. Display, real-time vehicle-to-station forecasting, public information release, timely update of line information, and online upgrade of the system, with real-time features, high security, and strong scalability.
In view of the lack of information provided by existing printing bus stations, the inability to provide vehicle arrival forecast, the increase of lines or the modification of line information, this paper proposes a new digital bus stop system. The system is based on the ARM7 and CPLD architecture, communicates with the bus control center via GPRS, and uses CA certification to ensure the security of communication. It can realize real-time vehicle arrival forecast and public information (such as weather forecast, important news, traffic conditions, emergency information). The functions of release, timely update of line information and online upgrade of the system have the characteristics of good real-time performance, high security and strong scalability, which can help to comprehensively improve the information service level of urban bus stations.
1 The overall structure and working principle of the digital bus stop systemThe system is divided into four parts: control center, station kiosk terminal communication module, station kiosk terminal control module and station kiosk terminal display module. The overall structure block diagram is shown in Figure 1. The composition and working principle of each part are as follows:
(1) Control Center: Responsible for monitoring the operation of buses in the whole city or a certain area, including: information collection, information processing, real-time bus scheduling, station display control and other functions. The control center establishes wireless communication with each station booth through GPRS to realize related control of the station booth terminal. In addition, the control center also locates the vehicle arrival time forecast based on the GPS location of the vehicle installed on the bus, combined with the vehicle speed and road condition information.
(2) Station kiosk terminal control module: consists of the core chip ARM and its peripheral devices, receives the information frame sent by the control center through the GPRS module, executes the control commands issued by the control center, and completes according to the display information sent by the control center. The font search, writes a high-speed data buffer consisting of two SRAMs, and the two SRAMs use "ping-pong logic", that is, the ARM chip writes the display data to one SRAM at a time, and the other is read by the CPLD at this time, and the two take turns. Switch to ensure the high speed of data and the continuity of display. In order to ensure the security of the system, each station terminal has a key. This key is written when the device is initialized. The external interface cannot access the key information. The ARM completes the receiving of the information frame according to the key. Decryption, if an information frame that cannot be verified is encountered, the system considers that the information frame has been tampered with and discarded. In addition, since each station terminal needs to work continuously for a long time, in order to prevent the system from working abnormally or even causing fire due to excessive temperature, each station terminal is equipped with a heat sink, including a temperature sensor and a cooling fan, and the ARM is obtained through a temperature sensor. The temperature inside the station booth, once the temperature is found to exceed the set value, immediately start the cooling fan to ensure that the system can work for a long time.
(3) Station kiosk terminal display module: consists of CPLD, LED scan drive circuit, LED dot matrix display, CPLD reads the data in the cache composed of two SRAMs, completes the scan drive process on the LED display, The internally solidified digital logic generates a screen display control signal, including a serial data shift signal, a data latch signal, a line scan signal, etc., and the LED display line scan circuit and the column data circuit drive the LED display based on these signals.
Figure 1 System overall structure block diagram
2 system hardware design2.1 Station Pavilion Terminal Control Module
The core chip ARM of the station kiosk terminal control module is connected to the control center through the GPRS module, and completes the data frame (including control commands and display information) issued by the control center. CA verification; downward writes the Chinese character dot matrix information to be displayed. A high-speed data buffer consisting of two ping-pong logics is used by two SRAMs to control the CPLD to accurately read the data in the cache. The GPRS module uses the BenQ M22 GPRS wireless module. This module can realize automatic network connection and protocol processing. It does not need background computer support. It communicates with ARM using RS-232 serial communication standard, and the baud rate is 57.6k. ARM selects LPC2378 from NXP. The LPC2378 is an ARM7TDMI-S processor that can operate at up to 72MHz. The chip has UART, hardware I2C, SPI and timer peripheral components [2], which is rich in on-chip and off-chip resources. Fast response and high cost performance are suitable for high-speed serial communication and CA certification. In addition, based on safety considerations, there is a heat sink connected to the ARM, including a temperature sensor and a cooling fan. The ARM monitors the temperature of the station terminal in real time through a temperature sensor. Once the temperature is found to exceed the set value, the cooling fan is immediately activated to ensure that the system can Uninterrupted work for a long time. The kiosk terminal control module also includes Flash, JTAG debug port and so on.
2.2 Station booth terminal display module
The station kiosk terminal display module consists of a CPLD, an LED scan drive circuit, and an LED display dot matrix. The scan drive circuit portion of the LED display is implemented by the CPLD. The CPLD reads the data in the cache, and its internally solidified digital logic generates a screen display control signal, including a serial data shift signal, a data latch signal, a line scan signal, etc., to complete the scan driving process for the LED display. The CPLD function is implemented by the hardware description language VHDL, which can greatly shorten the development cycle, make the design flexible, and easy to modify. At the same time, CPLD has high integration, high speed and high reliability, and short development cycle, which greatly improves the circuit performance. In this CPLD, ALTERA's MAXII series EPM1270 chip is selected. It has 116 I/O ports and 1270 logic units. It has high performance and low power consumption and meets the requirements.
3 system software design3.1 CA certification
The control center and the station kiosk establish wireless communication through GPRS. In order to ensure the integrity of the data in the communication process, this design uses the CA message authentication based on the hmac-sha1 algorithm to ensure that the information is not illegally attacked and tampered with. Hmac-sha1 is a key-based packet integrity verification method. Its security is based on the Hash algorithm. It requires the communication parties to share the key, the agreed algorithm, and hash the message to form a fixed length authentication code (MAC). Both parties of the communication determine the validity of the message by checking the authentication code. This algorithm is widely used as encryption, digital signature, message verification, etc. It can effectively resist exhaustive attacks, prevent information frame data from being arbitrarily falsified and subverted, and maximize the security of system operation.
The CA authentication steps based on the hmac-sha1 algorithm are as follows:
Let K and N be the key and synchronization sequence number agreed by the control center and the station kiosk, B is the size of the data block (in bits), and K0 is the key K of B length.
sender
Step1: Using the key K, find the K0 of the corresponding B length.
Step 2: Generate a message digest MAC code using the hmac-sha1 algorithm.
Step3: N adds 1 and updates the local N at the same time.
Step4: Encrypt the message and message digest MAC code using DES digital signature technology and send it to the kiosk terminal.
receiver
Step 5: First decrypt the received data using the corresponding decryption algorithm, and then repeat the calculations of Step1 and Step2 to generate a MAC code. If it matches the received message summary MAC code, the data is legal.
Step 6: If the received N is smaller than the locally stored N, it is a retransmission and can be synchronized or discarded. Otherwise, the data is fresh and legal.
3.2 ARM software design
ARM is the core chip of the station kiosk terminal. In order to ensure the speed and stability of the entire station kiosk terminal system, its software design is based on the embedded real-time operating system μC/OS-II [5], so that the operation can be fully utilized. The system has an efficient task scheduling algorithm and makes the development and expansion of the program more convenient. Its task structure is shown in Figure 2.
Figure 2 ARM software overall structure
After the ARM is powered on or reset, the system initialization is first performed, including initialization of the operating system and hardware interrupts, timers, and initialization of the communication interface. After the system is initialized, the following tasks are created:
Task_RS232Com: serial communication task, complete communication with the GPRS module, receive the information frame sent by the control center;
Task_LEDControl: LED display control task, write the data to be displayed (including line information and real-time vehicle arrival prediction, etc.) to the high-speed data buffer composed of SRAM2 and SRAM3, and transfer the written address to the CPLD to control the CPLD reading. The data in the cache;
Task_LineProcess: line information management task to save the update of bus line information;
Task_TempProtect: Temperature protection task, periodically read the temperature value provided by the temperature sensor. Once it is found to exceed the set value, the system immediately turns on the cooling fan to dissipate heat to ensure the system works normally.
Task_update: The system updates the task and completes the online upgrade of the system;
3.4 Software Design of CPLD
The CPLD completes the scan driving process for the LED display by generating a serial data shift signal, a data latch signal, a line scan signal, and the like. Its software design block diagram is shown in Figure 3. It mainly includes the following parts: (1) clock generator: generating clock signals of various frequencies; (2) read switching circuit: controlled by ARM, switching between two SRAMs , complete the reading of the high-speed data buffer; (3) read address generator: enable the CPLD to be accurately addressed in the cache composed of two SRAM; (4) scan control circuit: according to the data read in the cache The corresponding scan control signal is generated, and is sent to the column data circuit and the line scan circuit through the LED drive circuit interface; (5) JTAG port: an interface for providing online debugging.
Figure 3 CPLD software design block diagram
The digital bus station kiosk system based on ARM7 and CPLD proposed in this paper communicates with the control center in real time through the GPRS module and adopts CA certification to ensure the real-time and security of the system operation, which can effectively solve the existing bus stop sign provided by the bus stop. There are many shortcomings such as the lack of information, the inability to provide vehicle-to-station forecasts, the increase in wiring or the modification of line information. The real-time vehicle arrival forecast provided by the system enables passengers to view the line information and arrival time of all waiting vehicles through the LED display of the station booth in the waiting area of ​​the bus station, so that they can know how to improve the waiting passengers. Waiting for the anxiety of the car; at the same time, public information release can provide timely weather forecast, traffic conditions and other important information to facilitate the travel of passengers. In addition, the system has an online upgrade function to facilitate future system updates and maintenance. In short, the digital bus stop system will help to comprehensively improve the information service level of urban bus stations, and has broad application prospects in the future construction of urban intelligent transportation.
Today let`s talk about touch screen laptop. Sometimes people take Yoga Laptop or 2 In 1 Laptop or 360 Laptop as foldable touch screen laptop. Cause the later ones usually with touch screen function. The difference is that touch screen laptop specials can`t be flipped up to 360 degree, usually 180 degree. Do you think which kind of person love 2 in 1 touch screen laptop more? Business people is the right answer, cause they care more performance, touch screen function, 180 rotating, which are the very important points for businessman, especially teaching in person, do presentation, etc.
Do you think what other business laptop businessman love also except touch screen laptop under 20000? 14 inch 11th Laptop and 15.6inch 11th or 10th Laptop should be the top levels.
As a professional manufacturer, also customizing Android Tablet, Mini PC , and all in one except laptop. So believe you can always get the most competitive one at this store, balancing the quality and cost at top.
Any other special demand, you can just contact us freely. Will try our best to back you up.
Touch Screen Laptop,Touch Screen Laptop Specials,Touch Screen Laptop Under 20000,Foldable Touch Screen Laptop,2 In 1 Touch Screen Laptop
Henan Shuyi Electronics Co., Ltd. , https://www.shuyicustomtablet.com