Research and Design of Distributed Remote Upgrade Technology for Voltage Monitoring Terminal. Yi-qin BAO

Size: px
Start display at page:

Download "Research and Design of Distributed Remote Upgrade Technology for Voltage Monitoring Terminal. Yi-qin BAO"

Transcription

1 2017 2nd International Conference on Artificial Intelligence: Techniques and Applications (AITA 2017) ISBN: Research and Design of Distributed Remote Upgrade Technology for Voltage Monitoring Terminal Yi-qin BAO School of Information Engineering, Nanjing Xiaozhuang University, Nanjing, China, Keywords: Distributed system, Droken-point Continuously-transferring, Remote upgrade. Abstract. Grid voltage monitor is a terminal to measure the voltage and the voltage distortion rate, analysis of voltage quality, is one of the essential tools for power system monitoring, assessment of power supply voltage quality. With the continuous growing number of voltage monitoring terminal and the function demand, it is a daily requirement that regularly remote upgrade voltage monitor embedded software IAP, but, remote upgrade is a high-risk operation, many manufacturers have non-unified standard to realize the upgrade process, there are still upgrading the efficiency, stability and safety of the problem to think, sometimes operation improper or communication interrupt, will cause the voltage monitor abnormal work or crash, affecting the normal operation of the whole system. This paper introduced a BP_IAP method for distributed broken-point continuouslytransferring, safety certification, to ensure reliable operation of remote upgrade, through practice test, the whole upgrade platform work efficiency and safety, reduce the transport time and save upgrading process performance. Introduction In this paper, Firstly we discuss remote voltage monitor system infrastructures, providing a standard remote upgrading [1] algorithm, implemented by HEX download file, in the last part we compared with other traditional upgrading methods, we present a new method BP_IAP method, it is a high real-time system with remote safety certification [2] and it can retransfer files between two nodes from the latest file transfer break point[3], and makes file resources in the system can be shared by group. Through above steps ensure that remote embedded software upgrading process is smooth, high performance and safety. It is useful for voltage quality control and boost voltage terminal upgrading and monitor performance management to a high level. System Infrastructure and Platform Designing Voltage Monitors System and Components Remote voltage monitors terminal designing. Remote voltage monitor terminal implementation based on LPC2136 chip, it support 32KB RAM and built-in flash 256k memory, two series port, SPI interface.the LPC2136 microcontrollers are based on a 16/32-bit ARM7TDMI-S CPU with real-time emulation and embedded trace support, that combine the microcontroller with 256 kb of embedded high-speed flash memory. A 128-bit wide memory interface and unique accelerator architecture enable 32-bit code execution at maximum clock rate. Voltage Monitors System Infrastructure The voltage monitoring system mainly includes the voltage monitor, the front end computer server, the database and the WEB server, the remote monitoring and remote monitoring application system, the WEB application terminal, etc., and the distributed system [4], as shown in Figure 1. The voltage monitor is connected to the front end by the fixed IP address with the GPRS and the data communication is realized. However, with the increase of the number of the front machine (up to 207

2 10000 sites) connected with the voltage monitor, the load balance [5] technology is implemented in the system. The connection between the voltage monitor and the front engine is dynamic, and the program is completed by the task scheduling dispatched. System Software Framework and Design System Software Introduction Figure 1. Voltage monitor system and upgrading system. Software platform include front end server and master station application platform, frond end server talk with master platform, receive master station sending diagrams. By telecommunication protocol analysis, Front end server connect with task dispatcher and telecom interface, connect with monitor terminal. File Transfer Protocol Format Upgrading process is involved in upgrade file transfer, it is important to specify the data frame format. Table 1. Frame structure. Field Identification Beginning character Length Length Beginning characte Control Address field Link data Check Sum End of character value meaning 68H L L 68H C A data cs 16H Table 2. Link customer data frame format. Data field ID Application level function code AFN Frame sequence SEQ Data Unit ID (1-N) DA.DT. Data Unit (1-N) UNIT In above frame format, the link address field contains the administrative area code + terminal address (remote voltage monitor address), it is the only identification for the distributed data sending and receiving. The user data contains all user type data, and the data is distinguished by the function code and data unit identification, as shown in table 2. HEX File Frame Structure Analysis Voltage monitor terminal adopted ARM7 LPC2136 chip, use keil simulation and developing kit, 208

3 produced HEX file, this file can edit with editor software, the information contained in each row as listed as follows: Table 3. HEX data frame. LEN ADDR TYPE DATA CS Above in table 3, LEN column stands for data byte number, length is one byte, Address presents the beginning address, 2 bytes, Type: record type,one byte, Hex file begin when type=04,hex file data record when type=00,data: Hex data file length=len,cs: Check sum. For example: one HEX file : FA : F09FE518F09FE518F09FE510F09FE5A8 : CF09FE5846FA0B80CF09FE50CF09FE5F5 : C :0CBF EC1F00001A : FF Above file data can be read as following: (1) Header file : FA Here: 02 stand for record data length byte number 0000: this four consecutive 0 is always configured 04: record data type 0000: the fragment address FA: check sum value (2) Data file part: : F09FE518F09FE518F09FE510F09FE5A8 10: byte lengths of current row record 2000: EPROM memory begin address, this address is for the programming address that EPROM will wirte 00: type of record, here stands for data record 18F0-9FE5: HEX file data A8: Check sum of record (3) File end : FF 00 data byte number in record 0000 this field values is configured to this field is red FF Check sum of record Remote Upgrading Software Created Program to burn to the voltage monitor, include two programming: one is boot.hex, another is main.hex. boot.hex is booting program. Compile starting with 0x0, boot.hex has integrated two programs: boot.hex and main.hex. boot.hex is the start point of the program, the start address from the beginning of the 0x0, the main function is: when the power mounted, boot.hex look up the boot flag (4 bytes), if it equals 0xAA, 0xAA then enter the main program main.hex, if the value is 0x55, will fetch new main.hex by GPRS channel and override previous main.hex program. Main.hex is a remote upgrading program, if we upgrade this main program, we set the beginning address 0X2000, when compiled it, beginning address starting from 0x2000,main.hex can realize the function of voltage monitor terminal. If we don t upgrade the remote monitor software, we set the beginning address 0X0000,at the same time, we don t need boot.hex file According to above section, adopt file format to merge two Hex file: boot.hex and main.hex into one dy-main.hex file, format as following: 209

4 Boot header: Boot body: address starting from 0x0 Main body: address starting from 0x2000 Main end. Dy-main.hex is an IAP function of the voltage monitor program, to be written to LPC2136 in advance in main station, then sending upgrade software from the main station to local site, then go through online upgrading process by dy_main.hex program. File Transfer with Breakpoint Continuously Transfer Solution File transfer with breakpoint continuingly functions. (1) The master site fetched main.hex program according to section 2.3, count the total row numbers stored in variable RowNum, calculate the total diagram number stored in variable TotalNum, each 16 lines into a packet. The C program for calculating above RowNum and TotalNum parameter is as follows: RowNum=RowNum-2; if (RowNum%16=0) TotalNum=(RowNum/16); else TotalNum=(RowNum/16)+1; (2) Before sen ding, each line data with ASC code character will be converted into Hexadecimal code, a packet consist of 16 lines, according to the format of table 5, each file stores 16 rows of data, a total of 16*16=256 bytes, the last file may be less than 256 bytes. (3) To send data packets according to section 2.2 the communication protocol. (4) In the last frame of the packet we need to put extra 2 bytes, which is the entire file data checksum(cs). (5) The terminal receives all packets and computes the checksum( CS1) of all packet datas. If CS is equal to CS1, the file transfer is correct. File Transfer with Break Point Principle. For example, before dy_main.hex file sent, It will be divided into small packet message, which contain n messages, message sequences number beginning at S1 and ending at Sn, corresponding assigned each initial transfer status Fi=0 (i=1,n). By GPRS telecommunication all messages will be sent, if error occurred or timeout reached (10 seconds),the same packet will be sent again, up to three times before success. While receiving correct response message after the upgrade, check all message sign Fi (i=1, n) in platform side, such as Fi equal 0, Si is the breakpoint. Repeat the above process of message re-send, until all the message flag assigned to 1; finally compares checksum, these steps shown as in figure 4. If receive error response or time out, then repeat. Repeat above procedure send the messages from Si, until all message flag value equals to 1. Remote Software Upgrading Safety Designing Remote software upgrading is a high risk operation; upgrading process should be strictly controlled, also pay attention to the upgrading efficiency, like upgrade time duration, successful rate, especially in actual scenarios system platform need upgrade large number of terminal at the same time, should avoid the system crash and other issues, so in above process, we designed the following algorithm and techniques: (1) Each voltage terminal assigned unique code, for example each monitor with an area code + terminal address code as terminal ID, the front-end machine can be set by multi-thread technology to realize synchronization upgrade. (2) Before front end machine connect with voltage monitor terminal terminal, use the AFN code (06H) to authenticate each other (3) When the transmission message is transmitted, each packet has a parity check code to ensure that the message is correct. 210

5 (4) After the end of the packet transmission, the entire file is verified to ensure the integrity of the upgrade file. (5) If transfer file check is correct, will mark 4 byte with value as four 0x55H as symbol, then restart the terminal, the boot program substitute it with new program if it find the value equals four 0x55H, with replacement upgrade process successfully finished, the new symbol will be assigned to four 0xAA, to ensure the correct operation of the upgrade. (6) Finally, the master station is confirmed by reading the software version number to determine the upgrading job done. Through above upgrading steps and technology process, ensure the security of the file remote upgrade successfully. System Upgrade Validation & Testing In our ARM7 test environment, we adopted our new upgrading method compared with traditional voltage monitor terminal process, testing item including the number of upgrading site,file size, loss of package, consumption time, and successfully rate as following: Table 4. Adopt Tradition IAP upgrade method. VS Table 5. Adopt new BP- IAP upgrade method. upgrade number file size packet loss rate time success rate upgrade number file size packet loss rate time success rate Kb 15.6% 200Min 95% Kb 6.5% 28Min 100% From above test results can be seen, the new voltage monitor BP_IAP upgrade 50 terminals only 28 minutes, and the traditional voltage monitor IAP upgrade 40 terminals has been used for 200 minutes, it is very clear that BP_IAP upgrade efficiency greatly improved, more important is the success rate from 95% to 100%, and the security is better, to achieve the purpose of BP_IAP remote upgrade. Conclusions This paper describes the design and implementation of remote upgrade based on ARM7 voltage monitor. The paper mainly describes the design and implementation of ARM7 chip HEX file, communication protocol, and remote upgrade software platform. The platform is based on the GPRS communication distribution to realize file remote upgrade. In addition, the BP_IAP upgrade technology used in this paper has certain benefits and reference for other embedded system remote upgrades. References [1] Liu Jing, Liu Xiaoxiao, Tian Jianwei, Wen Hui. Design and implementation of remote upgrade platform for power information acquisition terminal [J]. Computer applications and software, (1): [2] Dai Hao. Design and implementation of FTP based file timing transmission software [J]. Computer applications and software, 2013, 30(1): [3] Xu Xuguang, Ou Yuyi, Ling Jie, Jiang Xiangyang, Wang shuang tu. Based PUF lightweight RFID security authentication protocol [J]. Computer applications and software, 2014, 31(11): [4] Wang Zheng. One Distributed component model [J] support an OpenMP thread bound.computer applications and software.2013, 30(3): [5] Kim, Li Qiu. Dynamic load balancing scheme based on multi-objective genetic algorithm [J]. Computer engineering and Science.2013, 35(12): [6] Jiao fu, a task scheduling algorithm with fuzzy multiple objectives[j] computer engineering and Science. 2014, 36(9)L

Remote Monitoring System of Ship Running State under Wireless Network

Remote Monitoring System of Ship Running State under Wireless Network Journal of Shipping and Ocean Engineering 7 (2017) 181-185 doi 10.17265/2159-5879/2017.05.001 D DAVID PUBLISHING Remote Monitoring System of Ship Running State under Wireless Network LI Ning Department

More information

Based on a Single Chip Microcomputer to Realize Electronic Clock Design and Analysis

Based on a Single Chip Microcomputer to Realize Electronic Clock Design and Analysis 2016 International Conference on Manufacturing Construction and Energy Engineering (MCEE) ISBN: 978-1-60595-374-8 Based on a Single Chip Microcomputer to Realize Electronic Clock Design and Analysis Shu-Hua

More information

A Design of Remote Monitoring System based on 3G and Internet Technology

A Design of Remote Monitoring System based on 3G and Internet Technology National Conference on Information Technology and Computer Science (CITCS 2012) A Design of Remote Monitoring System based on 3G and Internet Technology Shouxian WEN Lei XU Xingguo SUN Xiaohui LI* Abstract

More information

Design of Temperature and Humidity Data Acquisition System. Based on ARM

Design of Temperature and Humidity Data Acquisition System. Based on ARM 2017 International Conference on Computational Science and Engineering (ICCSE 2017) Design of Temperature and Humidity Data Acquisition System Based on ARM Pei-xue Liu 1, a, Yu-jie Chen 1, b, Bao-hua Jiang

More information

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2 Applied Mechanics and Materials Online: 2014-05-23 ISSN: 1662-7482, Vols. 556-562, pp 4998-5002 doi:10.4028/www.scientific.net/amm.556-562.4998 2014 Trans Tech Publications, Switzerland Research on the

More information

Chapter 4. Enhancing ARM7 architecture by embedding RTOS

Chapter 4. Enhancing ARM7 architecture by embedding RTOS Chapter 4 Enhancing ARM7 architecture by embedding RTOS 4.1 ARM7 architecture 4.2 ARM7TDMI processor core 4.3 Embedding RTOS on ARM7TDMI architecture 4.4 Block diagram of the Design 4.5 Hardware Design

More information

The Design of Embedded Remote Intelligent Automotive Monitoring System based on GSM. Lijun Gao

The Design of Embedded Remote Intelligent Automotive Monitoring System based on GSM. Lijun Gao 2nd International Conference on Electrical, Computer Engineering and Electronics (ICECEE 2015) The Design of Embedded Remote Intelligent Automotive Monitoring System based on GSM Lijun Gao Beijing Information

More information

The Design of Electronic Color Screen Based on Proteus Visual Designer Ting-Yu HOU 1,a, Hao LIU 2,b,*

The Design of Electronic Color Screen Based on Proteus Visual Designer Ting-Yu HOU 1,a, Hao LIU 2,b,* 2016 Joint International Conference on Service Science, Management and Engineering (SSME 2016) and International Conference on Information Science and Technology (IST 2016) ISBN: 978-1-60595-379-3 The

More information

Basics of UART Communication

Basics of UART Communication Basics of UART Communication From: Circuit Basics UART stands for Universal Asynchronous Receiver/Transmitter. It s not a communication protocol like SPI and I2C, but a physical circuit in a microcontroller,

More information

Lab 1 Introduction to Microcontroller

Lab 1 Introduction to Microcontroller Lab 1 Introduction to Microcontroller Feb. 2016 1 Objective 1. To be familiar with microcontrollers. 2. Introducing LPC2138 microcontroller. 3. To be familiar with Keil and Proteus software tools. Introduction

More information

Health monitoring of an power amplifier using an ethernet controller

Health monitoring of an power amplifier using an ethernet controller Health monitoring of an power amplifier using an ethernet controller 1 Sharadha N, 2 J Pushpanjali 1 Student, 2 Assistant Professor Bangalore institute of technology Bangalore, India Abstract the computer

More information

V850ES/SG3, V850ES/SJ3

V850ES/SG3, V850ES/SJ3 APPLICATION NOTE V850ES/SG3, V850ES/SJ3 V850ES/SG3, V850ES/SJ3 Microcontrollers R01AN0930EJ0200 Rev.2.00 Introduction This application note is intended for users who understand the functions of the V850ES/SG3

More information

Design and Implementation of Dual-Mode Wireless Video Monitoring System

Design and Implementation of Dual-Mode Wireless Video Monitoring System Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Design and Implementation of Dual-Mode Wireless Video Monitoring System BAO Song-Jian, YANG Shou-Liang ChongQing University

More information

Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption

Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption International Conference on Manufacturing Science and Engineering (ICMSE 2015) Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption Zeng Rong 1, a, Xia Wei 2, Wang Hongkai

More information

World Scientific Research Journal (WSRJ) ISSN: Design and Implementation of Stepper Motor Control System Based on 52 MCU

World Scientific Research Journal (WSRJ) ISSN: Design and Implementation of Stepper Motor Control System Based on 52 MCU World Scientific Research Journal (WSRJ) ISSN: 2472-3703 www.wsr-j.org Design and Implementation of Stepper Motor Control System Based on 52 MCU Xinglan Zhang a, Xianda Zhang b, * and Xin Zhong c School

More information

Remote Supervising of Power Plant

Remote Supervising of Power Plant 2017 2nd International Conference on Computer, Mechatronics and Electronic Engineering (CMEE 2017) ISBN: 978-1-60595-532-2 Remote Supervising of Power Plant Hui-ran WANG 1 and Rui-fang MA 2, * 1 College

More information

2017 International Conference on Economics, Management Engineering and Marketing (EMEM 2017) ISBN:

2017 International Conference on Economics, Management Engineering and Marketing (EMEM 2017) ISBN: 2017 International Conference on Economics, Management Engineering and Marketing (EMEM 2017) ISBN: 978-1-60595-502-5 Design of Attendance Check System Based on Ethernet Technology and Fingerprint Recognition

More information

Research on Hybrid Network Technologies of Power Line Carrier and Wireless MAC Layer Hao ZHANG 1, Jun-yu LIU 2, Yi-ying ZHANG 3 and Kun LIANG 3,*

Research on Hybrid Network Technologies of Power Line Carrier and Wireless MAC Layer Hao ZHANG 1, Jun-yu LIU 2, Yi-ying ZHANG 3 and Kun LIANG 3,* 2017 International Conference on Computer, Electronics and Communication Engineering (CECE 2017) ISBN: 978-1-60595-476-9 Research on Hybrid Network Technologies of Power Line Carrier and Wireless MAC Layer

More information

ECS 15: Introduction to Computers Midterm November 2 nd, 2011

ECS 15: Introduction to Computers Midterm November 2 nd, 2011 ECS 15: Introduction to Computers Midterm November 2 nd, 2011 Notes: 1) The midterm is open book, open notes. 2) You have 50 minutes, no more: I will strictly enforce this. 3) The midterm is divided into

More information

ETHERNET_FLASH_LOADER

ETHERNET_FLASH_LOADER MCU-AN-510048-E-10 32-BIT MICROCONTROLLER MB9B610 Series ETHERNET_FLASH_LOADER USER MANUAL TM ARM and Cortex-M3 are the trademarks of ARM Limited in the EU and other countries. Revision History Revision

More information

The purpose of this course is to provide an introduction to the RL78's flash features and archectecture including security features, code and data

The purpose of this course is to provide an introduction to the RL78's flash features and archectecture including security features, code and data 1 The purpose of this course is to provide an introduction to the RL78's flash features and archectecture including security features, code and data flash organization as well as self and external programming

More information

An Active RFID Tag for Outdoor Billboard Management

An Active RFID Tag for Outdoor Billboard Management 2017 2nd International Conference on Communications, Information Management and Network Security (CIMNS 2017) ISBN: 978-1-60595-498-1 An Active RFID Tag for Outdoor Billboard Management Hui JIANG 1,2,

More information

An Ethernet Based Control and Monitoring System Using ARM Processor

An Ethernet Based Control and Monitoring System Using ARM Processor An Ethernet Based Control and Monitoring System Using ARM Processor Pingale Vaishali S, Nikalje komal M, Chavan Snehal S, Prof. B.C.Kulkarni Department of Electronics And Telecommunication Engineering

More information

TOSVERT VF-S9 Communications Function Instruction Manual

TOSVERT VF-S9 Communications Function Instruction Manual TOSVERT VF-S9 Communications Function Instruction Manual Notice 1. Make sure that this instruction manual is delivered to the end user of the inverter. 2. Read this manual before first using the communications

More information

Research on the Improvement of the RTLAB Simulation Efficiency in DG

Research on the Improvement of the RTLAB Simulation Efficiency in DG MATEC Web of Conferences 22, 02002 ( 2015) DOI: 10.1051/ matecconf/ 20152202002 C Owned by the authors, published by EDP Sciences, 2015 Research on the Improvement of the RTLAB Simulation Efficiency in

More information

A Field Monitor System of Rodpumped Wells Based on GPRS

A Field Monitor System of Rodpumped Wells Based on GPRS A Field Monitor System of Rodpumped Wells Based on GPRS Item Type text; Proceedings Authors Zhaodong, Xing; Yanhong, Kou; Qishan, Zhang Publisher International Foundation for Telemetering Journal International

More information

2017 2nd International Conference on Communications, Information Management and Network Security (CIMNS 2017) ISBN:

2017 2nd International Conference on Communications, Information Management and Network Security (CIMNS 2017) ISBN: 2017 2nd International Conference on Communications, Information Management and Network Security (CIMNS 2017) ISBN: 978-1-60595-498-1 Vulnerability Scanning System Used in the Internet of Things for Intelligent

More information

FERGUSON BEAUREGARD. RTU-5000 Configurator User Manual

FERGUSON BEAUREGARD. RTU-5000 Configurator User Manual FERGUSON BEAUREGARD RTU-5000 Configurator User Manual FERGUSON BEAUREGARD RTU-5000 Configurator User Manual The Ferguson Beauregard RTU-5000 Configurator program and manuals are Copyright 1997-2004 by

More information

Research of Traffic Flow Based on SVM Method. Deng-hong YIN, Jian WANG and Bo LI *

Research of Traffic Flow Based on SVM Method. Deng-hong YIN, Jian WANG and Bo LI * 2017 2nd International onference on Artificial Intelligence: Techniques and Applications (AITA 2017) ISBN: 978-1-60595-491-2 Research of Traffic Flow Based on SVM Method Deng-hong YIN, Jian WANG and Bo

More information

Data Acquisition and Analysis of Distribution Automation System

Data Acquisition and Analysis of Distribution Automation System 07 5th International Conference on Computer, Automation and Power Electronics CAPE 07 Data Acquisition and Analysis of Distribution Automation System Yang Chengpeng, a, Zhang Xiaoliang,b, Ren Yong,c,Wang

More information

TrueSecure TM GTM-5110Cxx Series Embedded Fingerprint Module

TrueSecure TM GTM-5110Cxx Series Embedded Fingerprint Module TrueSecure TM GTM-5110Cxx Series Revision: V1.00 Date: July 10, 2014 Table of Contents 1 Features... 3 2 Applications... 3 3 Selection Table... 3 4 Block Diagram... 4 5 General Description... 4 6 Pin Description...

More information

REGIONAL COUNTRY INFORMATION SERVICE PLATFORM BASED ON HYBRID NETWORK

REGIONAL COUNTRY INFORMATION SERVICE PLATFORM BASED ON HYBRID NETWORK REGIONAL COUNTRY INFORMATION SERVICE PLATFORM BASED ON HYBRID NETWORK Songbin Zhou 1,2,*, Guixiong Liu 1, Taobo Cheng 1, 2 1 School of Mechanical Engineering, South China University of Technology, Guangzhou

More information

Research on WSN Secure Communication Method Based on Digital Watermark for the Monitoring of Electric Transmission Lines

Research on WSN Secure Communication Method Based on Digital Watermark for the Monitoring of Electric Transmission Lines DOI: 10.23977/acss.2019.31002 EISSN 2371-8838 Advances in Computer, Signals and Systems (2019) 3: 8-14 Clausius Scientific Press, Canada Research on WSN Secure Communication Method Based on Digital Watermark

More information

Implementing In-Application Programming on the ADuC702x

Implementing In-Application Programming on the ADuC702x Implementing In-Application Programming on the ADuC702x By Johnson Jiao [Johnson.Jiao@analog.com] and Raven Xue [Raven.Xue@analog.com] Background The ADuC702x Precision Analog Microcontroller provides

More information

ECE 650 Systems Programming & Engineering. Spring 2018

ECE 650 Systems Programming & Engineering. Spring 2018 ECE 650 Systems Programming & Engineering Spring 2018 Networking Transport Layer Tyler Bletsch Duke University Slides are adapted from Brian Rogers (Duke) TCP/IP Model 2 Transport Layer Problem solved:

More information

Development of a Smart Power Meter for AMI Based on ZigBee Communication

Development of a Smart Power Meter for AMI Based on ZigBee Communication Development of a Smart Power Meter for AMI Based on ZigBee Communication Shang-Wen Luan Jen-Hao Teng Member IEEE Department of Electrical Engineering, I-Shou University, Kaohsiung, Taiwan Abstract: Many

More information

The IIC interface based on ATmega8 realizes the applications of PS/2 keyboard/mouse in the system

The IIC interface based on ATmega8 realizes the applications of PS/2 keyboard/mouse in the system Available online at www.sciencedirect.com Procedia Engineering 16 (2011 ) 673 678 International Workshop on Automobile, Power and Energy Engineering The IIC interface based on ATmega8 realizes the applications

More information

Related Work The Concept of the Signaling. In the mobile communication system, in addition to transmit the necessary user information (usually voice

Related Work The Concept of the Signaling. In the mobile communication system, in addition to transmit the necessary user information (usually voice International Conference on Information Science and Computer Applications (ISCA 2013) The Research and Design of Personalization preferences Based on Signaling analysis ZhiQiang Wei 1,a, YiYan Zhang 1,b,

More information

Hello, and welcome to this presentation of the STM32L4 System Configuration Controller.

Hello, and welcome to this presentation of the STM32L4 System Configuration Controller. Hello, and welcome to this presentation of the STM32L4 System Configuration Controller. 1 Please note that this presentation has been written for STM32L47x/48x devices. The key differences with other devices

More information

TMS320LF240x-A Flash Programming

TMS320LF240x-A Flash Programming TMS320LF240x-A Flash Programming Serial Port Flash Programming Utility Table of Contents 1. Introduction... 4 1.1. Overview... 4 2. Operation... 4 2.1. DSP Controller Initialization... 4 2.2. Kernel Transfer...

More information

Intelligent Pressure Measuring System

Intelligent Pressure Measuring System Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IJCSMC, Vol. 3, Issue.

More information

Research on Device Control System Design Based on Stepping Motor. Zhongyong Tian

Research on Device Control System Design Based on Stepping Motor. Zhongyong Tian 3rd International Conference on Machinery, Materials and Information Technology Applications (ICMMITA 2015) Research on Device Control System Design Based on Stepping Motor Zhongyong Tian The people's

More information

Design of Smart Home System Based on ZigBee Technology and R&D for Application

Design of Smart Home System Based on ZigBee Technology and R&D for Application Energy and Power Engineering, 2016, 8, 13-22 Published Online January 2016 in SciRes. http://www.scirp.org/journal/epe http://dx.doi.org/10.4236/epe.2016.81002 Design of Smart Home System Based on ZigBee

More information

The Research of Internet of Things in Operation and Maintenance for Distribution Grid

The Research of Internet of Things in Operation and Maintenance for Distribution Grid 2016 3 rd International Conference on Engineering Technology and Application (ICETA 2016) ISBN: 978-1-60595-383-0 The Research of Internet of Things in Operation and Maintenance for Distribution Grid Hengbo

More information

Research on Device Control System Design Based on Stepping Motor Wu Dongyan 1, Xu Wen 1, Wang Mingge 2, Jiang Ruochong 1, Jiang Lifeng 1

Research on Device Control System Design Based on Stepping Motor Wu Dongyan 1, Xu Wen 1, Wang Mingge 2, Jiang Ruochong 1, Jiang Lifeng 1 International Conference on Automation, Mechanical Control and Computational Engineering (AMCCE 201) Research on Device Control System Design Based on Stepping Motor Wu Dongyan 1, Xu Wen 1, Wang Mingge

More information

Design of Coal Mine Power Supply Monitoring System

Design of Coal Mine Power Supply Monitoring System 2nd International Conference on Electronics, Network and Computer Engineering (ICENCE 2016) Design of Coal Mine Power Supply Monitoring System Lei Shi 1, Guo Jin 2 and Jun Xu 3 1 2 Department of electronic

More information

Advanced Embedded Systems

Advanced Embedded Systems Advanced Embedded Systems Practical & Professional Training on Advanced Embedded System Course Objectives : 1. To provide professional and industrial standard training which will help the students to get

More information

Wireless-Tag WT51822-S4AT

Wireless-Tag WT51822-S4AT Description: WT51822-S4AT is a high performance,low power radio transmit and receive system module use Nordic BLE 4.1 nrf51822 as the controller chips. It has the smallest volume package in the industry,

More information

BLACK BOX FOR CAR ACCIDENT

BLACK BOX FOR CAR ACCIDENT BLACK BOX FOR CAR ACCIDENT Nishi Singh Parmar 1, Kajal Lohia 2, Kajal Kapoor 3 1,2,3 Dronacharya College of Engineering, Gurgaon, Haryana ABSTRACT The main purpose of the paper is to develop a prototype

More information

Jacquard Control System of Warp Knitting Machine Based on Embedded System

Jacquard Control System of Warp Knitting Machine Based on Embedded System IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Control System of Warp Knitting Machine Based on Embedded System To cite this article: Li Ce et al 2018 IOP Conf. Ser.: Mater.

More information

Intelligent Computer Room Management Platform Based on RF Card

Intelligent Computer Room Management Platform Based on RF Card 2017 2 nd International Conference on Artificial Intelligence and Engineering Applications (AIEA 2017) ISBN: 978-1-60595-485-1 Intelligent Computer Room Management Platform Based on RF Card LI ZHANG and

More information

EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG

EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG Adam Lindberg github.com/eproxus HARDWARE COMPONENTS SOFTWARE FUTURE Boot, Serial console, Erlang shell DEMO THE GRISP BOARD SPECS Hardware & specifications

More information

Homework 9: Software Design Considerations

Homework 9: Software Design Considerations Homework 9: Software Design Considerations Team Code Name: Mind Readers Group No. 2 Team Member Completing This Homework: Richard Schuman E-mail Address of Team Member: _rschuman_ @ purdue.edu Evaluation:

More information

Network protocol for Internet of Things based on 6LoWPAN

Network protocol for Internet of Things based on 6LoWPAN Abstract Network protocol for Internet of Things based on 6LoWPAN Yijun Wang 1,*, Yushan Mei 1 College of Electronic & Information Engineering, Changchun University of Science and Technology Changchun

More information

CMS-8GP32. A Motorola MC68HC908GP32 Microcontroller Board. xiom anufacturing

CMS-8GP32. A Motorola MC68HC908GP32 Microcontroller Board. xiom anufacturing CMS-8GP32 A Motorola MC68HC908GP32 Microcontroller Board xiom anufacturing 2000 717 Lingco Dr., Suite 209 Richardson, TX 75081 (972) 994-9676 FAX (972) 994-9170 email: Gary@axman.com web: http://www.axman.com

More information

A New Method Of VPN Based On LSP Technology

A New Method Of VPN Based On LSP Technology 2nd Joint International Information Technology, Mechanical and Electronic Engineering Conference (JIMEC 2017) A New Method Of VPN Based On LSP Technology HaiJun Qing 1, 2 1, 2, ChaoXiang Liang, LiPing

More information

Design of the Storage Battery Online Monitoring System

Design of the Storage Battery Online Monitoring System Design of the Storage Battery Online Monitoring System Juan Tian College of Information Engineering, Taishan Medical University, Tai an 271016, China Cheng Wang Shandong Senter Electronic Co., Ltd, Zibo

More information

Using UART in radio data transmission with the CDP-02 module By Tomihiko Uchikawa

Using UART in radio data transmission with the CDP-02 module By Tomihiko Uchikawa Using UART in radio data transmission with the CDP-02 module By Tomihiko Uchikawa Abstract: The first time a customer uses the CDP-TX-02N/RX-02N (called CDP-02 module) radio module, they are often uncertain

More information

Hardware design of a submerged buoy system based on electromagnetic inductive coupling

Hardware design of a submerged buoy system based on electromagnetic inductive coupling Hardware design of a submerged buoy system based on electromagnetic inductive coupling 1 Dalei Song, Shan Gao 1, Ming Xu 2, Xiangdong Wang 1 and Yutao Wang 2 1 Department of Automation, Engineering College,

More information

Design of SCADA power Distribution Monitoring System based on PLC and Configuration Software

Design of SCADA power Distribution Monitoring System based on PLC and Configuration Software Proceedings of 2012 International Conference on Mechanical Engineering and Material Science (MEMS 2012) Design of SCADA power Distribution Monitoring System based on PLC and Configuration Software Pingze

More information

Improvement of the Communication Protocol Conversion Equipment Based on Embedded Multi-MCU and μc/os-ii

Improvement of the Communication Protocol Conversion Equipment Based on Embedded Multi-MCU and μc/os-ii Improvement of the Communication Protocol Conversion Equipment Based on Embedded Multi-MCU and μc/os-ii P. Sai Chaitanya & T. Sandeep ECE Department, Varadha Reddy College of Engineering, Hasanparthy,

More information

Multi-core microcontroller design with Cortex-M processors and CoreSight SoC

Multi-core microcontroller design with Cortex-M processors and CoreSight SoC Multi-core microcontroller design with Cortex-M processors and CoreSight SoC Joseph Yiu, ARM Ian Johnson, ARM January 2013 Abstract: While the majority of Cortex -M processor-based microcontrollers are

More information

EXPERIMENT NUMBER 5 Creating a Single Chip Memory Space for the 8051

EXPERIMENT NUMBER 5 Creating a Single Chip Memory Space for the 8051 5-1 EXPERIMENT NUMBER 5 Creating a Single Chip Memory Space for the 8051 INTRODUCTION: The 8031 microcontroller on the XS40 board is an 8051-type microcontroller, but unlike the 8051 it contains no on-chip

More information

Research on Heterogeneous Communication Network for Power Distribution Automation

Research on Heterogeneous Communication Network for Power Distribution Automation 3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) Research on Heterogeneous Communication Network for Power Distribution Automation Qiang YU 1,a*, Hui HUANG

More information

USR-TCP User Manual

USR-TCP User Manual USR-TCP232-306 User Manual File Version: V1.0.1.01 1 Contents USR-TCP232-306 User Manual...1 Features...3 1. Get Start...4 1.1. Application Diagram...4 1.2. Hardware Design...5 1.2.1. Hardware Dimensions...5

More information

Research and Design of Crypto Card Virtualization Framework Lei SUN, Ze-wu WANG and Rui-chen SUN

Research and Design of Crypto Card Virtualization Framework Lei SUN, Ze-wu WANG and Rui-chen SUN 2016 International Conference on Wireless Communication and Network Engineering (WCNE 2016) ISBN: 978-1-60595-403-5 Research and Design of Crypto Card Virtualization Framework Lei SUN, Ze-wu WANG and Rui-chen

More information

Flash Loader Utility for the Z8 Encore! XP MCU

Flash Loader Utility for the Z8 Encore! XP MCU Application Note Flash Loader Utility for the Z8 Encore! XP MCU AN011806-0408 Abstract This application note describes Flash Loader utility for the Zilog s Z8 Encore! XP MCU that can be operated through

More information

440GX Application Note

440GX Application Note Overview of TCP/IP Acceleration Hardware January 22, 2008 Introduction Modern interconnect technology offers Gigabit/second (Gb/s) speed that has shifted the bottleneck in communication from the physical

More information

USR-K1 Super Port. File version: V1.0.4

USR-K1 Super Port. File version: V1.0.4 USR-K1 Super Port File version: V1.0.4 USR-K1 is the high performance-cost version of Super Port.It is an embedded serial networking module, whose function is to realize bidirectional transparent transmission

More information

USR-TCP User Manual

USR-TCP User Manual USR-TCP232-302 User Manual File Version: V1.0.3.01 1 Contents USR-TCP232-302 User Manual...1 Features...3 1. Get Start...4 1.1. Application Diagram...4 1.2. Hardware Design...5 1.2.1. Hardware Dimensions...5

More information

Introduction to 8051 microcontrollers

Introduction to 8051 microcontrollers Introduction to 8051 microcontrollers Posted on May 7, 2008, by Ibrahim KAMAL, in Micro-controllers, tagged This tutorial is specially tailored to electronics and robotics hobbyists that have already realized

More information

CS2506 Quick Revision

CS2506 Quick Revision CS2506 Quick Revision OS Structure / Layer Kernel Structure Enter Kernel / Trap Instruction Classification of OS Process Definition Process Context Operations Process Management Child Process Thread Process

More information

EtherCAT Data Acquisition System Based on DMA Mode

EtherCAT Data Acquisition System Based on DMA Mode 2012 2nd International Conference on Industrial Technology and Management (ICITM 2012) IPCSIT vol. 49 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V49.5 0 EtherCAT Data Acquisition System

More information

Links. CS125 - mylinks 1 1/22/14

Links. CS125 - mylinks 1 1/22/14 Links 1 Goals of Today s Lecture Link-layer services Encoding, framing, and error detection Error correction and flow control Sharing a shared media Channel partitioning Taking turns Random access Shared

More information

Design of analog acquisition and storage system about airborne flight data recorder

Design of analog acquisition and storage system about airborne flight data recorder 3rd International Conference on Mechatronics, Robotics and Automation (ICMRA 2015) Design of analog acquisition and storage system about airborne flight data recorder Changyou Li 1, a, Pengfei Sun 1, b

More information

The Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG 3, C, Dongxu XIANG 4,D

The Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG 3, C, Dongxu XIANG 4,D International Power, Electronics and Materials Engineering Conference (IPEMEC 2015) The Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG

More information

3rd International Conference on Mechanical Engineering and Intelligent Systems (ICMEIS 2015)

3rd International Conference on Mechanical Engineering and Intelligent Systems (ICMEIS 2015) 3rd International Conference on Mechanical Engineering and Intelligent Systems (ICMEIS 2015) Development Of SSP510 Frequency Voltage Emergency Control Device Qinghua Si 1,2,a *, Zhukun Li 1,2, Yunsong

More information

Construction Scheme for Cloud Platform of NSFC Information System

Construction Scheme for Cloud Platform of NSFC Information System , pp.200-204 http://dx.doi.org/10.14257/astl.2016.138.40 Construction Scheme for Cloud Platform of NSFC Information System Jianjun Li 1, Jin Wang 1, Yuhui Zheng 2 1 Information Center, National Natural

More information

Introduction to ARM LPC2148 Microcontroller

Introduction to ARM LPC2148 Microcontroller Introduction to ARM LPC2148 Microcontroller Dr.R.Sundaramurthy Department of EIE Pondicherry Engineering College Features of LPC2148 in a Nut Shell CPU = ARM 7 Core Word Length = 32 Bit ROM = 512 KB RAM

More information

High-Performance 32-bit

High-Performance 32-bit High-Performance 32-bit Microcontroller with Built-in 11-Channel Serial Interface and Two High-Speed A/D Converter Units A 32-bit microcontroller optimal for digital home appliances that integrates various

More information

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2 Applied Mechanics and Materials Online: 2012-12-13 ISSN: 1662-7482, Vols. 256-259, pp 2898-2901 doi:10.4028/www.scientific.net/amm.256-259.2898 2013 Trans Tech Publications, Switzerland The Analysis and

More information

The Construction of Open Source Cloud Storage System for Digital Resources

The Construction of Open Source Cloud Storage System for Digital Resources 2017 3rd International Conference on Electronic Information Technology and Intellectualization (ICEITI 2017) ISBN: 978-1-60595-512-4 The Construction of Open Source Cloud Storage System for Digital Resources

More information

Research on Multi-service Unified Bearing Electric Power Communication Access Network Bao Feng1,a, Yang Li1, Yang Hu1, Yan Long2, Yongzhong Xie3

Research on Multi-service Unified Bearing Electric Power Communication Access Network Bao Feng1,a, Yang Li1, Yang Hu1, Yan Long2, Yongzhong Xie3 4th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2015) Research on Multi-service Unified Bearing Electric Power Communication Access Bao Feng1,a, Yang

More information

HDLC-ETH. Serial Ethernet Converter. Rev. Dec 20, Datasheet. Website:

HDLC-ETH. Serial Ethernet Converter. Rev. Dec 20, Datasheet.   Website: HDLC-ETH Serial Ethernet Converter Rev. Dec 20, 2017 HDLC-ETH Datasheet Email: yacer@yacer.cn Website: www.yacer.cn 1 Overview... 3 1.1 Introduction... 3 1.2 Features... 3 1.3 Applications... 3 1.4 Technical

More information

Infineon C167CR microcontroller, 256 kb external. RAM and 256 kb external (Flash) EEPROM. - Small single-board computer (SBC) with an

Infineon C167CR microcontroller, 256 kb external. RAM and 256 kb external (Flash) EEPROM. - Small single-board computer (SBC) with an Microcontroller Basics MP2-1 week lecture topics 2 Microcontroller basics - Clock generation, PLL - Address space, addressing modes - Central Processing Unit (CPU) - General Purpose Input/Output (GPIO)

More information

International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015)

International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015) International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015) ARINC - 429 airborne communications transceiver system based on FPGA implementation Liu Hao 1,Gu Cao 2,MA

More information

Ref: A. Leon Garcia and I. Widjaja, Communication Networks, 2 nd Ed. McGraw Hill, 2006 Latest update of this lecture was on

Ref: A. Leon Garcia and I. Widjaja, Communication Networks, 2 nd Ed. McGraw Hill, 2006 Latest update of this lecture was on IP Version 4 (IPv4) Header (Continued) Identification (16 bits): One of the parameters of any network is the maximum transmission unit (MTU) parameter. This parameter specifies the maximum size of the

More information

A Hybrid Architecture for Video Transmission

A Hybrid Architecture for Video Transmission 2017 Asia-Pacific Engineering and Technology Conference (APETC 2017) ISBN: 978-1-60595-443-1 A Hybrid Architecture for Video Transmission Qian Huang, Xiaoqi Wang, Xiaodan Du and Feng Ye ABSTRACT With the

More information

TrueSecure TM GTM-5110Cxx Series Embedded Fingerprint Module

TrueSecure TM GTM-5110Cxx Series Embedded Fingerprint Module TrueSecure TM Revision: V1.10 Date: October 14, 2014 Table of Contents 1 Features... 3 2 Applications... 3 3 Selection Table... 3 4 Block Diagram... 4 5 General Description... 4 6 Pin Description... 5

More information

Research and Realization of HART Protocol Based on Wireless Short Range Network Technology Kaiyuan Meng 1, a, Qingnian Cao 2, b

Research and Realization of HART Protocol Based on Wireless Short Range Network Technology Kaiyuan Meng 1, a, Qingnian Cao 2, b 2nd International Conference on Electrical, Computer Engineering and Electronics (ICECEE 2015) Research and Realization of Protocol Based on Short Range Network Technology Kaiyuan Meng 1, a, Qingnian Cao

More information

Memory Expansion. Lecture Embedded Systems

Memory Expansion. Lecture Embedded Systems Memory Expansion Lecture 22 22-1 In These Notes... Memory Types Memory Expansion Interfacing Parallel Serial Direct Memory Access controllers 22-2 Memory Characteristics and Issues Volatility - Does it

More information

Research on Heterogeneous Network Integration in Distribution Communication Network

Research on Heterogeneous Network Integration in Distribution Communication Network Research on Heterogeneous Integration in Distribution Communication Wei Li 1, Haonan Zheng 1, Hui He 1 1 (School of Control and Computer Engineering, North China Electric Power University, China) Abstract:

More information

The Internet of Things for Petroleum Transportation

The Internet of Things for Petroleum Transportation 2017 2nd International Conference on Applied Mechanics and Mechatronics Engineering (AMME 2017) ISBN: 978-1-60595-521-6 The Internet of Things for Petroleum Transportation Hui-ran WANG 1 and Rui-fang MA

More information

EE 354 Fall 2015 Lecture 1 Architecture and Introduction

EE 354 Fall 2015 Lecture 1 Architecture and Introduction EE 354 Fall 2015 Lecture 1 Architecture and Introduction Note: Much of these notes are taken from the book: The definitive Guide to ARM Cortex M3 and Cortex M4 Processors by Joseph Yiu, third edition,

More information

The Parameters Optimization of Fusion Winglet Based on Orthogonal Experiment Yue LUO 1, *, Qi WANG 1, Qi DU 1 and Hou-An DING 1

The Parameters Optimization of Fusion Winglet Based on Orthogonal Experiment Yue LUO 1, *, Qi WANG 1, Qi DU 1 and Hou-An DING 1 2016 International Conference on Control and Automation (ICCA 2016) ISBN: 978-1-60595-329-8 The Parameters Optimization of Fusion Winglet Based on Orthogonal Experiment Yue LUO 1, *, Qi WANG 1, Qi DU 1

More information

Vehicle-Assisted Device-to-Device Data Delivery for Smart Grid

Vehicle-Assisted Device-to-Device Data Delivery for Smart Grid Vehicle-Assisted Device-to-Device Data Delivery for Smart Grid Karipe Meena M.Tech (ES & VLSID), Department of ECE Sudheer Reddy College of Engineering & Technology(W) Abstract: Smart grid (SG) has recently

More information

Design of ARM Based Embedded System for Industrial Application Using TCP/IP Network

Design of ARM Based Embedded System for Industrial Application Using TCP/IP Network RESEARCH ARTICLE OPEN ACCESS Design of ARM Based Embedded System for Industrial Application Using TCP/IP Network Bhushan R. Khangare,Mrs,A. P. Rathakanthiwar Electronics Department, Priyadarshini College

More information

RF900 LoRa Telemetry module V1.0

RF900 LoRa Telemetry module V1.0 1. General RF900 is a low cost, medium power, high performance transparent two way semi-duplex LoRa modulation transceiver with operation at 169/433/868/915 Mhz. It integrates with high speed MCU from

More information

K -B U S R. R S232/ K N X C ontroller. U ser m anual-v er.1 BTCC-02/ KNX/EIB Intelligent Installation Systems

K -B U S R. R S232/ K N X C ontroller. U ser m anual-v er.1 BTCC-02/ KNX/EIB Intelligent Installation Systems Guangzhou Video-star Electronics Industrial Co., Ltd K -B U S R R S232/ K N X C ontroller U ser m anual-v er.1 BTCC-02/232.1 Intelligent Installation Systems Contents 1. Summary ---------------------------------------------------------------------------------------------------------------------

More information

The RS-485 user manual for B800 series communication

The RS-485 user manual for B800 series communication The user manual of B800 Series Rs-485 The RS-485 user manual for B800 series RS-232 inbuilt inside the main board of B800 series frequency inverter, we can effect RS-485 through fitting board externally.

More information