The Design and Development of Database in Electrician s Digital Assistant

Size: px
Start display at page:

Download "The Design and Development of Database in Electrician s Digital Assistant"

Transcription

1 International Journal of Advanced Computer Science, Vol. 2, No. 3, Pp , Mar The Design and Development of Database in Electrician s Digital Assistant Jingzhao Li Manuscript Received: 18,Jun., 2011 Revised: 27,Sep., 2011 Accepted: 14,Feb., 2012 Published: 15,Apr., 2012 Keywords Digital assistant; Embedded database; ARM; SQLite; Linux Abstract Electrician s digital assistant has the functions, including multimeter, oscilloscope, common electrical formula calculation, and electrical parameter manual query. Its hardware is made up of a microprocessor S3C2440 based on ARM core, the circuit for data collection and process and the display circuit of touch-screen/lcd. In addition, an embedded Linux operating system and embedded database SQLite3 are transplanted to design application program. In this paper, the design and development of embedded database used in electrician s digital assistant is introduced. Based on the embedded database SQLite3 was transplanted to ARM-Linux platform, we designed data tables and fields of electrician s digital assistant. It is emphasis analyzed that the creation of database table and design of the database query in electrical technology data query module. 1. Introduction The embedded system has already became a new economic growth point in IT industry, the PDA(Personal Digital Assistant) as a high-end embedded system production has also been developed rapidly. Especially with the population of microprocessor based on ARM core and the open source code Linux OS, the PDA is widely applied and its functions continue to be improved and enriched. However, there are more general types of PDA but the fewer professional type now [1]. Supported by Anhui provincial natural science foundation of universities key projects, we studied a professional PDA used by electrician in this article; this professional PDA has the functions, including multimeter, oscilloscope, common electrical formula calculation and electrical parameter information manual query. This type of PDA will enable the electrical technicians to work without multiple instruments, numerous information queries and formula calculations, which greatly improves the work efficiency. As the electricians digital assistant need to deal with a large amount of information and data, embedded database SQLite3 is transplanted to ARM-Linux platform to design This work is supported by Anhui Provincial Natural Science Foundation of Universities Key Projects Project Approval (KJ2009A093). Jingzhao Li is with School of Computer Science and Engineering,Anhui University of Science and Technology Faculty (jzh.li@aust.edu.cn) user application program in the process of development. The transplantation and application of embedded database SQLite3 of the electrician s digital assistant is analyzed in this paper. 2. The Functions and Architecture of Electricians Digital Assistant The electrician s digital assistant has the following functions: (1) Multimeter. It can measure the usual electrical signals and parameters, such as resistance, capacitance, inductance, voltage, current, frequency and so on. In addition, it can also measure the real-time instantaneous value of online AC voltage & current, power factor, active power, reactive power, apparent power, frequency and other electrical parameters. (2) Oscilloscope. It displays the waveform of measured electrical signals such as voltage, current, power in the form of wave shape and digital [2]. (3) Formula calculation with online edit. It can execute the common electrical formula calculation. The user can submit the observed values to the formula in electricians digital assistant directly, obtain the results and preserve them. The electricians digital assistant simultaneously also supports the online formula edit, which makes the electricians digital assistant more universal. Multimeter Module Electricians digital assistant Oscilloscope Module Formula Computation Module Fig.1 Function modules of electricians digital assistant (4) Electrical data query. The user can query the desired electrical professional technical data with the title or keywords using the precise or fuzzy queries. Meanwhile, Data Query Module GPRS Module VoiceNavigationModule

2 100 International Journal of Advanced Computer Science, Vol. 2, No. 3, Pp , Mar this module can automatically store the related data and seek the history data. (5) Voice navigation and GPRS communications, etc. This PDA supports the voice navigation, browses, downloads or uploads the personal data using GPRS. Function module design of the electrician digital assistant is shown in figure 1. This electricians digital assistant obtains the measure value of electrical signals through the bottom data acquisition module. The system control signals are triggered by touch screen. Its structure of the electrician s digital assistant is shown in figure 2. Application Software for Embedded System The Embedded GUI The Embedded OS The Embedded Hardware Platform The Embedded Database Fig.2 Structure of electricians digital assistant 3. The Analysis of Embedded Database A. Characteristics of Embedded Database Compared with the general computer system, the embedded database, which is determined by the demand of special development environment, has following characteristics [3]: (1) Embedded database management system takes up very little memory space, should be try to avoid redundant data. (2) Embedded database should have good real-time, so as to ensure when embedded real-time operating system is running, will not affect the real-time performance of entire system. (3) Since the embedded system is inevitably related to the underlying hardware, embedded database can operate and control the underlying data. B. The Analysis of Common Embedded Database Common embedded database on Linux platform mainly has PostgreSQL, MySQL, MSQL, BerkeleyDB, SQLite, etc [4]. (1) PostgreSQL PostgreSQL is used freely, so it is the first choice for many Linux distributions. For example, Redhat and TurboLinux are pre-installed PostgreSQL. (2) MySQL MySQL is a multi-user, multi-process SQL database server. MySQL has an implementation tool (client/server), including server daemon, client programs and libraries, so It is suitable for small and simple database. (3) MSQL (minisql) Data transmission MSQL is a single-user database management system. As it is pithy, which makes the developed application system is very popular among the Internet users. (4) BerkeleyDB BerkeleyDB is an open source embedded database management system, which can provide the application with a high-performance data management service. Programmers only need a few simple API calls can be completed on the data access and management. (5) SQLite SQLite is a type of database, which supports most standard SQL92 statement. It uses a single database file storage, which has large memory capacity; runs rapidly [5]. It is easy to use in deal with similar relational database. Otherwise, the copyright of SQLite allows any application restrictions, including commercial products. This portable embedded database product has been integrated in PHP5. As the above analysis shows, MySQL provides more appropriate functions, has become the first choice for medium and small-scale database applications. But it is charged in commercial applications, and that, for the embedded development, still too much space is taken up. MSQL is a simplified SQL database, energetic, easy for embedded development. But it is not an entirely open source. PostgreSQL has a larger volume, and using Berkeley DB will increase development costs. So we use the SQLite to develop the electricians digital assistant database system in the paper. 4. Embedded Linux Boot and Kernel s Transplantation This PDA s software design is composed of four layers, that is, the bootloader, the OS kernel, the file system and the user application program. A. Boot Transplantation In this paper, U-Boot is selected as the PDA boot program. First, the first stage code of U-Boot is placed in file start.s, which is coded in assembly language, Then a start function (that is armboot()) in file libarm/board.c is coded using c programming language, which is the main function of the entire startup code as well as the U-Boot[1]. B. Linux Transplantation The kernel is the core programs of the OS, also the center of the all component in Linux system, which provides the core management calls of microprocessor for the output. The Linux kernel functions are composed of five parts, including the process management, the memory management, the file system, the device management (such as device drivers, distribution and collection), network protocols, etc. The Linux kernel is transplanted as the PDA s OS [3]. The transplantation follows eight steps: (1) Download the compressed file of kernel source code. Copy file linux tar.bz2 to working directory, unzip, and then get the complete Linux kernel source code. (2) Modify file Makefile. The platform is set as ARM and the cross compiler s prefix is defined as arm-linux-, save and quit.

3 Jingzhao Li: The Design and Development of Database in Electrician s Digital Assistant. 101 (3) Set the Nand Flash partitions. (4) Add yaffs patches. (5) Add the drivers for the LCD and network card in the kernel. (6) Modify the input clock frequency of the platform. (7) Modify the machine code. (8) Execute the commands of make menuconfig and make to compile the kernel, and then a kernel image file named jzlimag is created, this file can be used to boot the kernel after it is written to the development board [5]. C. Design of Driver Program This chapter focuses on the touch screen driver. The touch screen driver needs to be coded by combining with the IAL of MiniGUI, it mainly has the following functions: device file open function s3c2440_ts_open (), device file release function s3c2440_ts_release(), device file read function s3c2440_ts_read(), device file poll function s3c2440_ts_poll(), working mode setting function s3c2440_ts_init(), releasing module function s3c2440_ts_exit() and interrupt function s3c2440_ts_adctc () and so on. For interrupt function s3c2440_ts_isr_adct(), the controller generates interrupt signal INT_TC when the touch pen clicks the touch screen. The register can get the X and Y position after the interrupt, and then the interrupt function wake_up_interruptible (&queue) is called to wake up the driver blocking queue. The drivers of LCD, USB and other equipments are realized in the same way, which are omitted here. D. Design and Implementation of GUI MiniGUI has some common control classes, including static text box, button, edit box, list box, combo box, progress bar, slider, toolbar, scroll control and tree view control, calendar control; it also supports dialog box, message box and other GUI elements such as menu, accelerator key, inserter, timer, etc. MiniGUI is about 500KB in codes and very suitable for developing the graphical interface in PDA. The MiniGUI is used to develop the graphics interface of application programs in this PDA system. Firstly, MiniGUI software is installed and configured on the host machine with the Linux OS. The main steps are as follows: (1) Download the development library libminigui-str tar.gz, the resource file minigui-res-str tar.gz (2) Unzip and install the resources in file miniui-res tar.gz including basic font, icon, and bitmap and mouse cursor. (3) Set MiniGUI as qvfb mode, then MiniGUI can be used to develop graphical interface. 5. Transplantation SQLite on the ARM-Linux Platform According to different hardware platforms, SQLite embedded database provides a way to release for cross-compiling source code. If electricians digital assistant use SQLite3.2.5, the compilation process has the following steps: (1) Download and decompress this package, and build a sqlite directory, then build and go to a new directory which is parallel with the sqlite, in order to store the compiled results separately. After input $tar -zxvf sqlite tar.gz at the same level, there will generate sqlite directory. (2) Put arm-linux-gccs directory in the PATH environment variable: PATH: /opt/host/armv4l/bin. (3) Amend sqlite/src/sqliteint.h, for sure that btree has the correct variable type. Find in the following statement On the ARM-Linux system: #ifndef INTPTR_TYPE #if SQLITE_PTR_SZ==4 #define INTPTR_TYPE int # else #define INTPTR_ TYPE long long # endif Added define SQLITE_PTR_SZ 4 before the above statements, in that way, the type of "typedef INTPTR_TYPE ptr is int but not "long long". (4) Modify Makefile.linux-gcc Open $vi Makefile.linux-gcc, and change BCC=gcc -g -02 into BCC=arm-linux-gcc -g -02, then run SQLite in ARM-Linux. (5) Install and run the following commands: $./configure -disable -tcl $make $make install Add the -disable tcl option in the above commands; in order to make it do not support tcl, and can reduce the size of the generated library. (6) Run SQLit based on PDA Add the cross-compiling file libsqlite.a to the directory lib of the filing system, and modify permissions: $chmod +wx libsqlite.a. In this way, you can use the library functions from SQLite for developing application program [6]. 6. The design of the Electricians digital assistant database The design of the electricians digital assistant database includes two parts, one is the design of datasheet, and another is the design of field in datasheet. A. Design of Datasheet According to the analysis of the electricians digital assistant functions, the entire system consists of four modules oscilloscope, multimeter module, formula computation module and data query module. Oscilloscope module need to conserve waveform, display it when you need, and keep the waveform and the related information. Multimeter modules need to build the datasheet to conserve all electrical measured value and measured information for preservation and query. Formula computation modules need to implement the formula editor and conserve it, and need to build a data table to keep the electrical formulas.

4 102 International Journal of Advanced Computer Science, Vol. 2, No. 3, Pp , Mar Moreover, this module should have the function of conserving the calculated results. Electrical data module has a large amount of data which being used often by electrical technicians. Through the above analysis, the system database can be divided into four functional modules, which is the corresponding datasheet design with each module. Oscilloscope modules need to build waveform storage tables, and the fields include measured time, x-axis scale units, y-axis scale units, and waveform. Formula computation module need to establish the table of electrical formula, and the fields include the physical, electrical formula; in addition, build the storage of computing results, in order to store and query results, field including the measuring time and formula, the results and so on. The table of computing results is in connection with the table of electrical formula. Electrical data query module established electrical table, fields including data types, data and information content of the title. Fields and functions of the database are shown in Table1. TABLE1 FUNCTIONS OF THE DATABASE Table name Function Waveform storage table Save the waveform oscilloscope module Measurement storage table Save the measurement results multimeter module Electrical formula table Save electricity formula The results table Save electricity formula results Electrical data sheet Save electrical information for inquiries B. Design of Field in Datasheet We have established five figures of database and made the introduction of the field. Now, taking the data query module as the example, we introduced how to design field in the data sheet. Data type of field is not necessary in establishing datasheet in SQLite3, and all data types like value, character and long text are stored in the datasheet. So we only need to consider the rational design of a database table structure. Design of electrical data datasheet is shown in Table2. TABLE2 FIELD DESIGN OF ELECTRICAL DATA SHEET Field name Description of Memoery field Type of data classification Shorten the query time Title of data the title of each Electrical data table key, the user can Content of data data concrete content search by title the contents of user need 7. SQLite Application in Electrical Information Query Module The operations of electrical data query module mainly include data queries and data import. User queries electrical data, based on the choice of data types and the input keywords or title. You can use the exact query or the fuzzy inquiry. A. The Establishment of an Electrical Technical Data Query Module Database Table Design of electrical technical data query module s database has two steps. At first, data is written to the database, providing a query for the user. Secondly, the processed data can be displayed in the system where it is needed, and the API function which is provided by SQLite carry on the data processing conveniently in multi-line edit box of this module. Above all, you type $sqlite3 eepda.db in shell terminal in order to establish a database. Then, you need to create electrical information in the database table, and input create table elecinfo (title, type, info), a datasheet named elecinfo, which has three fields that are title, type and info is established. Before system runs, you need to import the common electrical information to datasheet, including information on the type of the datasheet and data caption that user is querying. According to the user s option to query the database, the results will be displayed in the LCD. The statement - sqlite3 eepda.db insert into elecinfo values can make a record being inserted into the elecinfo table. Other records can also be imported in the same way. The stored procedure of electrical data is shown in figure 3. Electrician can deal with data through a variety of library functions which is offered through sqlite-3.2.5, when they are using electricians digital assistant. These library functions consist of sqlite3_open, sqlite3_ exec, sqlite3_snprintf, and sqlite3_close. And the statement sqlite3_snprintf (sizeof(zsq12)), zsq12 is inserted into elecinfo values (' %q', ' %q', ' %q') and is explained. When Chinese character is used in process of the application, it will be shown as garbled. If transform the Chinese character to the GB2312, it will be displayed correctly. So format conversion should be used % q for formatting in SQL.When the main window of system is loaded, you need to add initialization code in the main window s procedure function MSG_CREATE. For example, using the command sqlite3_open(eepda.db,&db) to open database, and so on. B. Design of the Database Query Module When users carry on the electrical data query, at first, choose the data type from the combination frame, then choose the data title. For example, if query the data content whose title is the fuzzy, the user need to choose the type the fuzzy control from the data class. Choose the title the fuzzy in the data title combination frame and click the button the inquiry, then the result is displayed in multi-line editor. If the text is longer, the user can use the scroll bar to read information. The process of electrical data query module database is shown in figure 4.

5 Jingzhao Li: The Design and Development of Database in Electrician s Digital Assistant. 103 Begin Open database sending message CB_SETCURSEL to the control IDC_TYPE. Filling design of combo box is shown in figure 5. Exist or missing? Y Establish a database table t t N Create a new database Query the type of data from the database Are there matching records? Y Set the content of IDC_TYPE N Add data in the table Close the database Add query results to IDC_TYPE Over Back to the index value Fig.3 Stored procedure of electrical data Release the query pointer When MSG_INITDIALOG is loaded to electrical data query dialog box, the API function related to Sqlite is called to initialize the electrical data query module database tables, and retrieve the type of electric data from the database. Retrieval condition is decided by the SQL statement select distinct type from elecinfo. The SQL statement queries all data categories from the table elecinfo. The parameter distinct will be used to return only different value, in order to that there will be not duplication in the query results. If the query success, the results will be classified and filled the combo control. Then the message CB_INSERTSTRING is sent to the list box in the control window by the function SendDlgItemMessage, this message is used to insert new entries to the list box. Open the database Fill IDC_TYPE Choose type Open the database Choose the title and click the query button Show the query result Click the return button Return the main window Fig.4 Database processing procedure Finally, release the results of the query and put the first piece of data in the current option of the combo box, by Exit data query Fig.5 filling process of combo box data The filling process of data title combo box is similar to data category combo box. After the user selects a data classification, the system will automatically trigger the event nc=cbn_selchanged of data title combine box, implement the select statement, check out all the information under the category title, display the title information in the combo box for users to choose. After the user selects the title, click the query button to trigger the click event of query button, add query button's one-shot event code to the MiniGUI procedure code, and join the query statement select info from elecinfo. If a matching is recorded, the data content is displayed in the multi-line edit box, else returns -1. At last, the system displays the query results by calling the function SetWindowText. 8. Conclusion It is briefly described that design and development of embedded database used in electricians digital assistant in this paper. Taking the electrical data query module as the example, we analyzed the application of SQLite3 database, and finally realized the function as online calculation, editing and querying electrical data, etc. References [1] C.M. Wu, & C.W. Su, Design of a PDA-based Asthma Peak Flow Monitor System, (2009) International Conference on Biomedical Engineering, IFMBE Proceedings, 13, vol. 23, pp [2] J. Li, Based on an embedded system design new pulse therapy instrument, (2006) Journal of Tianjin University supple, pp [3] I.H. Jang, Ch.H. Kim & N.Ch. Kim, Region Analysis of

6 104 International Journal of Advanced Computer Science, Vol. 2, No. 3, Pp , Mar Business Card Images Acquired in PDA Using DCT and Information Pixel Density, Lecture Notes in Computer Science, (2005) Advanced Concepts for Intelligent Vision Systems, vol. 37, no. 08, pp [4] K. Yaghmour, & B. Embedded Linux System, (2003) Publisher: O Relly &Associates, pp [5] A. Ganssle, The Art of Programming Embedded Systems, (2009) Beijing: Posts & Telecom Press. [6] T. Chen, Y. Lian, & J. Huang, A New Approach for Predictable Hard Real-Time Transaction Processing in Embedded Database,Lecture Notes in Computer Science, ( 2005) Embedded Software and Systems, vol. 36, no. 05, pp Jingzhao LI was born in Huainan, Anhui, China, in He received the M.Sc. and Ph.D. degrees from China University of Mine in1992 and Hefei University of Science and Technology in 2003, respectively. He is the author or coauthor of more than ten national and international papers and also collaborated in several research projects. Since 1992 he has been with the Department of Electrical Engineering and School of Computer Science and Engineering at AUST. He currently is the Dean and professor of School of Computer Science and Engineering at AUST, and works with both electronic and computer engineering groups. His current research interests include Embedded system, computer control and internet of things design.

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

REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX

REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX 1 S. M. GRAMOPADHYE, 2 R. T. PATIL RIT Sakharale Email: sgswapnilsmg328@gmail.com, ramesh.patil@ritindia.edu Abstract: The continuous improvement in development

More information

HUMAN-COMPUTER INTERFACE DEVELOPMENT OF WIRELESS MONITORING SYSTEM BASED ON MINIGUI

HUMAN-COMPUTER INTERFACE DEVELOPMENT OF WIRELESS MONITORING SYSTEM BASED ON MINIGUI HUMAN-COMPUTER INTERFACE DEVELOPMENT OF WIRELESS MONITORING SYSTEM BASED ON MINIGUI Zhihua Diao 1, Chunjiang Zhao 1, 2, Xiaojun Qiao 2,*, Cheng Wang 2, Gang Wu 1, Xin Zhang 2 1 2 University of Science

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

Datasheet for MiniGUI V2.0.4/V1.6.10

Datasheet for MiniGUI V2.0.4/V1.6.10 Datasheet for MiniGUI V2.0.4/V1.6.10 Main Technical Features of MiniGUI First, MiniGUI is a complete and self-contained embedded graphics support system, which is designed and optimized for embedded systems.

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

Research on Design Reuse System of Parallel Indexing Cam Mechanism Based on Knowledge

Research on Design Reuse System of Parallel Indexing Cam Mechanism Based on Knowledge Send Orders for Reprints to reprints@benthamscience.ae 40 The Open Mechanical Engineering Journal, 2015, 9, 40-46 Open Access Research on Design Reuse System of Parallel Indexing Cam Mechanism Based on

More information

Research on Image Sensor System Acquisition Based on ARM

Research on Image Sensor System Acquisition Based on ARM Sensors & Transducers, Vol. 161, Issue 1, December 013, pp. 86-91 Sensors & Transducers 013 by IFSA http://www.sensorsportal.com Research on Image Sensor System Acquisition Based on ARM Yao NAN The Information

More information

The Research about Embedded Soft PLC Running System Based on ARM

The Research about Embedded Soft PLC Running System Based on ARM Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com The Research about Embedded Soft PLC Running System Based on ARM Fang Ding, Suzhuo Wu College of Aeronautical Automation,

More information

TQ2440 Development Platform Manual

TQ2440 Development Platform Manual TQ2440 Development Platform Manual 0 Directory Directory... 1 Chapter 1 Introduction... 7 11Appearance of TQ2440 development platform... 7 12Hardware resource of TQ2440... 7 13Software introduction of

More information

Research of tooling test signal collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c

Research of tooling test signal collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c 5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) Research of tooling test collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c 1 School

More information

The Design of Supermarket Electronic Shopping Guide System Based on ZigBee Communication

The Design of Supermarket Electronic Shopping Guide System Based on ZigBee Communication The Design of Supermarket Electronic Shopping Guide System Based on ZigBee Communication Yujie Zhang, Liang Han, and Yuanyuan Zhang College of Electrical and Information Engineering, Shaanxi University

More information

S3C6410-TFAUbuntu Easy Guide

S3C6410-TFAUbuntu Easy Guide S3C6410-TFA Ubuntu TABLE OF CONTENTS S3C6410-TFAUbuntu simple manual...- 1 - S3C6410-TFAUbuntu simple manual......- 5-- 1.1 install and run Ubuntu......- 5-- 1.1.1 Ubuntu install to the development board

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

Wireless Remote Water Meter Design of Automatic Meter Reading System

Wireless Remote Water Meter Design of Automatic Meter Reading System , pp. 289-298 http://dx.doi.org/10.14257/ijsh.2015.9.12.29 Wireless Remote Water Meter Design of Automatic Meter Reading System Zhu HengJun 1 and Zhu YiSheng 2 Communication and electronic engineering

More information

The Design and Implementation of Electronic Program Guide In Digital TV Set-Top-Box

The Design and Implementation of Electronic Program Guide In Digital TV Set-Top-Box I.J. Education and Management Engineering, 2012, 11, 56-61 Published Online November 2012 in MECS (http://www.mecs-press.net) DOI: 10.5815/ijeme.2012.11.11 Available online at http://www.mecs-press.net/ijeme

More information

Design of New Oscillograph based on FPGA

Design of New Oscillograph based on FPGA Available online at www.sciencedirect.com Procedia Engineering 23 (2011) 60 64 Design of New Oscillograph based on FPGA Hu Haoran,ZHANG Fei School of Computer & Information, Anqing Teachers College, Anqing

More information

Design of a Multi-parameter Measurement System

Design of a Multi-parameter Measurement System TELKOMNIKA Indonesian Journal of Electrical Engineering Vol.12, No.4, April 2014, pp. 3118 ~ 3125 DOI: http://dx.doi.org/10.11591/telkomnika.v12i4.4782 3118 Design of a Multi-parameter Measurement System

More information

Design and Realization of Agricultural Information Intelligent Processing and Application Platform

Design and Realization of Agricultural Information Intelligent Processing and Application Platform Design and Realization of Agricultural Information Intelligent Processing and Application Platform Dan Wang 1,2 1 Institute of Agricultural Information, Chinese Academy of Agricultural Sciences, Beijing

More information

Research and design on boxing-teaching robot of embedded system and pressure sensor

Research and design on boxing-teaching robot of embedded system and pressure sensor Acta Technica 62 No. 3A/2017, 149 156 c 2017 Institute of Thermomechanics CAS, v.v.i. Research and design on boxing-teaching robot of embedded system and pressure sensor Zhengxian Huang 1 Abstract. As

More information

Design of Centralized Remote-reading Meter System and Intelligent Network Water Meter

Design of Centralized Remote-reading Meter System and Intelligent Network Water Meter International Conference on Mechatronics, Electronic, Industrial and Control Engineering (MEIC 2014) Design of Centralized Remote-reading Meter System and Intelligent etwork Water Meter Chuanfeng Li lichuanfeng@sina.com

More information

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30 Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30 CADDM Aircraft wing box rapid modeling based on skeleton model Zhang Chao, Xi Ping School of Mechanical Engineering

More information

MV 4412 Android 4.0 Compilation

MV 4412 Android 4.0 Compilation MV 4412 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MV4412 Android Compilation.doc Date 2012. 7. 12 Satus Working Revision History Date Version Update Descriptions

More information

Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b

Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b 2nd Workshop on Advanced Research and Technology in Industry Applications (WARTIA 2016) Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b 1

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

Design and Research of Virtual Instrument Development Board

Design and Research of Virtual Instrument Development Board Design and Research of Virtual Instrument Development Board Lin Zhang 1, Taizhou Li 2, and Zhuo Chen 2 1 School of Mechanical and Engineering, Huazhong University of Science and Technology 2 School of

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

DEVELOPMENT OF USER FRIENDLY DATA ACQUISITION AND ACTUATION SYSTEM ON EMBEDDED PLATFORM

DEVELOPMENT OF USER FRIENDLY DATA ACQUISITION AND ACTUATION SYSTEM ON EMBEDDED PLATFORM DEVELOPMENT OF USER FRIENDLY DATA ACQUISITION AND ACTUATION SYSTEM ON EMBEDDED PLATFORM 1 Moolya Ashwar Shankar, 2 Mr. Sukesh Rao M. 1 PG Scholar, 2 Assistant Professor, NMAMIT Nitte Email: 1 moolya.ashwar@gmail.com,

More information

Development of Home Remote Monitoring System Based on Mini2440 Board

Development of Home Remote Monitoring System Based on Mini2440 Board Development of Home Remote Monitoring System Based on Mini2440 Board Hongliang Song a, Jinxiao Cao b, Tongzhuang Liu c, Jinsong Li d College of Mechanical and Electronic Engineering, Shandong University

More information

Fingerprint Verification Terminal of Examination Information Based on Qt Mengtao Huang 1, Mengyao Han 2

Fingerprint Verification Terminal of Examination Information Based on Qt Mengtao Huang 1, Mengyao Han 2 2016 International Conference on Information Engineering and Communications Technology (IECT 2016) ISBN: 978-1-60595-375-5 Fingerprint Verification Terminal of Examination Information Based on Qt Mengtao

More information

Design of the Journaling File System for Performance Enhancement

Design of the Journaling File System for Performance Enhancement 22 Design of the Journaling File System for Performance Enhancement Seung-Ju, Jang Dong-Eui University, Dept. of Computer Engineering Summary In this paper, I developed for the purpose of ensuring stability

More information

Embedded System Implementation of Airborne Communication Terminals

Embedded System Implementation of Airborne Communication Terminals Wireless Engineering and Technology, 2013, 4, 139-144 http://dx.doi.org/10.4236/wet.2013.43021 Published Online July 2013 (http://www.scirp.org/journal/wet) 139 Embedded System Implementation of Airborne

More information

Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology

Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology 2010 China International Conference on Electricity Distribution 1 Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology Zhang Hong-tao, Ye Ying, An Qing China Zhoukou Power

More information

MV V310 Android 4.0 Compilation

MV V310 Android 4.0 Compilation MV V310 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MVV310 Android Compilation.doc Date 2012. 4. 17 Satus Working Revision History Date Version Update Descriptions

More information

MV V210 Android 4.0 Compilation

MV V210 Android 4.0 Compilation MV V210 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MVV210 Android Compilation.doc Date 2012. 5. 21 Satus Working Revision History Date Version Update Descriptions

More information

Constructing an University Scientific Research Management Information System of NET Platform Jianhua Xie 1, a, Jian-hua Xiao 2, b

Constructing an University Scientific Research Management Information System of NET Platform Jianhua Xie 1, a, Jian-hua Xiao 2, b Applied Mechanics and Materials Online: 2013-12-04 ISSN: 1662-7482, Vol. 441, pp 984-988 doi:10.4028/www.scientific.net/amm.441.984 2014 Trans Tech Publications, Switzerland Constructing an University

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

Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen

Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen Applied Mechanics and Materials Online: 2014-02-06 ISSN: 1662-7482, Vols. 519-520, pp 504-509 doi:10.4028/www.scientific.net/amm.519-520.504 2014 Trans Tech Publications, Switzerland Realization of Automatic

More information

DevKit7000 Evaluation Kit

DevKit7000 Evaluation Kit DevKit7000 Evaluation Kit Samsung S5PV210 Processor based on 1GHz ARM Cortex-A8 core Onboard 512MByte DDR2 and 512MByte NAND Flash 4 UART, 4 USB Host, USB Device, Ethernet, Audio, TF, RTC,... Supports

More information

Research on Intelligent Human-Machine Interface of Relay Protection

Research on Intelligent Human-Machine Interface of Relay Protection International Conference on Advances in Energy, Environment and Chemical Engineering (AEECE-2015) Research on Intelligent Human-Machine Interface of Relay Protection Can Bao 1,a, Jianfei Yang and Huaren

More information

Study of Smart Home System based on Zigbee Wireless Sensor System. Jie Huang 1

Study of Smart Home System based on Zigbee Wireless Sensor System. Jie Huang 1 2nd Workshop on Advanced Research and Technology in Industry Applications (WARTIA 2016) Study of Smart Home System based on Zigbee Wireless Sensor System Jie Huang 1 1 College of Mechanical and Electronic

More information

Study of LED Electronic Writing Screen based on Single Chip Dengjin Wu 1

Study of LED Electronic Writing Screen based on Single Chip Dengjin Wu 1 4th National Conference on Electrical, Electronics and Computer Engineering (NCEECE 2015) Study of LED Electronic Writing Screen based on Single Chip Dengjin Wu 1 1 North China Electric Power University,

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

Chapter 2: Operating-System Structures

Chapter 2: Operating-System Structures Chapter 2: Operating-System Structures Chapter 2: Operating-System Structures Operating System Services User Operating System Interface System Calls Types of System Calls System Programs Operating System

More information

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e*

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e* Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1076-1080 doi:10.4028/www.scientific.net/amr.971-973.1076 2014 Trans Tech Publications, Switzerland AN WIRELESS COLLECTION

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

Komodo CAN Interface. Komodo TM CAN Interface GUI. Komodo GUI User s Manual v1.50 Octorber 26, 2012

Komodo CAN Interface. Komodo TM CAN Interface GUI. Komodo GUI User s Manual v1.50 Octorber 26, 2012 Komodo CAN Interface Komodo GUI User s Manual v1.50 Octorber 26, 2012 Summary The Komodo GUI is a graphical application for use with the Komodo CAN Interface. The application provides access to CAN Bus

More information

Practical Database Design Methodology and Use of UML Diagrams Design & Analysis of Database Systems

Practical Database Design Methodology and Use of UML Diagrams Design & Analysis of Database Systems Practical Database Design Methodology and Use of UML Diagrams 406.426 Design & Analysis of Database Systems Jonghun Park jonghun@snu.ac.kr Dept. of Industrial Engineering Seoul National University chapter

More information

TJU Syllabus for Linux Fundamentals and Applications

TJU Syllabus for Linux Fundamentals and Applications TJU Syllabus for Linux Fundamentals and Applications Code: 2160281 Title: Linux Fundamentals and Applications Semester Hours: 40 Credits: 2 Semester Structure Offered by: for: Prerequisite: Hour Lecture:24

More information

A Web Page Segmentation Method by using Headlines to Web Contents as Separators and its Evaluations

A Web Page Segmentation Method by using Headlines to Web Contents as Separators and its Evaluations IJCSNS International Journal of Computer Science and Network Security, VOL.13 No.1, January 2013 1 A Web Page Segmentation Method by using Headlines to Web Contents as Separators and its Evaluations Hiroyuki

More information

Design and Implementation of Computer Room Management System in University

Design and Implementation of Computer Room Management System in University Design and Implementation of Computer Room Management System in University YOUwen Zhang, Dong Kang* {Zhangyouwen521@163.com} HaiNan college of Economics and Business Haikou 571127, China Abstract. With

More information

Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology

Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology Xi Wang 1 and Hui Gao 2 1 Heilongjiang Bayi Agricultural Reclamation University, Daqing 163319, China 2 Lanzhou Jiaotong

More information

Version User s Guide

Version User s Guide EN Sample Manager for MZ-X500/X300 Version 1.1.0 User s Guide Use this manual in combination with the User s Guide that comes with the Instrument. SAMPLEMANAMZX-110-E1A Contents Introduction... 3 What

More information

Customizing dynamic libraries of Qt based on the embedded Linux Li Yang 1,a, Wang Yunliang 2,b

Customizing dynamic libraries of Qt based on the embedded Linux Li Yang 1,a, Wang Yunliang 2,b Applied Mechanics and Materials Submitted: 2014-11-12 ISSN: 1662-7482, Vol. 740, pp 782-785 Accepted: 2014-12-02 doi:10.4028/www.scientific.net/amm.740.782 Online: 2015-03-09 2015 Trans Tech Publications,

More information

Chapter 2: Operating-System Structures. Operating System Concepts 9 th Edition

Chapter 2: Operating-System Structures. Operating System Concepts 9 th Edition Chapter 2: Operating-System Structures Silberschatz, Galvin and Gagne 2013 Chapter 2: Operating-System Structures Operating System Services User Operating System Interface System Calls Types of System

More information

Control System for Electrical Exploding Wire Opening Switch Experimental Equipment

Control System for Electrical Exploding Wire Opening Switch Experimental Equipment 6th International Conference on Advanced Design and Manufacturing Engineering (ICADME 2016) Control System for Electrical Exploding Wire Opening Switch Experimental Equipment YANG Jia-zhi1, a, DENG Yi-chen,1,b

More information

Datasheet for MiniGUI V3.0.x

Datasheet for MiniGUI V3.0.x Datasheet for MiniGUI V3.0.x MiniGUI is a cross-operating-system graphics user interface support system for embedded devices, and an embedded graphics middleware. It aims to provide a fast, stable, and

More information

Open Access Apriori Algorithm Research Based on Map-Reduce in Cloud Computing Environments

Open Access Apriori Algorithm Research Based on Map-Reduce in Cloud Computing Environments Send Orders for Reprints to reprints@benthamscience.ae 368 The Open Automation and Control Systems Journal, 2014, 6, 368-373 Open Access Apriori Algorithm Research Based on Map-Reduce in Cloud Computing

More information

IJREAT International Journal of Research in Engineering & Advanced Technology, Volume 1, Issue 5, Oct-Nov, 2013 ISSN:

IJREAT International Journal of Research in Engineering & Advanced Technology, Volume 1, Issue 5, Oct-Nov, 2013 ISSN: Friendly ARM MINI2440 & Dalvik Virtual Machine with Android Sangamesh Gama 1 and Manjula C 2 1 Assistant Professor, Department of Computer Science and Engineering, BKIT Bhalki, India 2 Associate Software

More information

What is SQL? Toolkit for this guide. Learning SQL Using phpmyadmin

What is SQL? Toolkit for this guide. Learning SQL Using phpmyadmin http://www.php-editors.com/articles/sql_phpmyadmin.php 1 of 8 Members Login User Name: Article: Learning SQL using phpmyadmin Password: Remember Me? register now! Main Menu PHP Tools PHP Help Request PHP

More information

Design of Bicycle mileage Speed Meter

Design of Bicycle mileage Speed Meter Journal of Computing and Electronic Information Management ISSN: 2413-1660 Design of Bicycle mileage Speed Meter Xiuwei Fu 1, a 1 College of Information & Control Engineering, Jilin Institute of Chemical

More information

Modification of Boards into Wireless Using Embedded Platform and ARM9

Modification of Boards into Wireless Using Embedded Platform and ARM9 Modification of Boards into Wireless Using Embedded Platform and ARM9 Swati R. Dike #1,Prof. Pravin N. Matte #2 #1 VLSI and Embeded Systems,G. H. Raisoni College of Engg. and Mgmt, #2G. H. Raisoni College

More information

Low Power System Design

Low Power System Design Low Power System Design Module 18-1 (1.5 hours): Case study: System-Level Power Estimation and Reduction Jan. 2007 Naehyuck Chang EECS/CSE Seoul National University Contents In-house tools for low-power

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

Serial Communication Based on LabVIEW for the Development of an ECG Monitor

Serial Communication Based on LabVIEW for the Development of an ECG Monitor Advanced Materials Research Online: 2013-08-16 ISSN: 1662-8985, Vols. 734-737, pp 3003-3006 doi:10.4028/www.scientific.net/amr.734-737.3003 2013 Trans Tech Publications, Switzerland Serial Communication

More information

PORTING 3GP PLAYER ANDROID APPLICATION ON ARM9 WITH HIGH SECURITY (USING BIOMETRICS)

PORTING 3GP PLAYER ANDROID APPLICATION ON ARM9 WITH HIGH SECURITY (USING BIOMETRICS) Journal of Computer Networking, Wireless and Mobile Communications (JCNWMC) Vol.2, Issue 1 Sep 2012 39-44 TJPRC Pvt. Ltd., PORTING 3GP PLAYER ANDROID APPLICATION ON ARM9 WITH HIGH SECURITY (USING BIOMETRICS)

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 1 Databases and Database Objects: An Introduction Objectives Design a database to satisfy a collection of requirements Describe the features of the Access window Create a

More information

A Low-Cost Remote Healthcare Monitor System Based on Embedded Server

A Low-Cost Remote Healthcare Monitor System Based on Embedded Server TELKOMNIKA, Vol. 11, No. 4, April 2013, pp. 1750~ 1756 ISSN: 2302-4046 1750 A Low-Cost Remote Healthcare Monitor System Based on Embedded Server He Liu* 1, 2, Yadong Wang 1,*, Lei Wang 2 1 School of Biomedical

More information

Embedded Systems Ch 3A Linux Development Environment

Embedded Systems Ch 3A Linux Development Environment Embedded Systems Ch 3A Linux Development Environment Byung Kook Kim Dept of EECS Korea Advanced Institute of Science and Technology Overview 1. Embedded Linux 2. Cross-Development System 3. Setting Linux

More information

Development of Content Management System with Animated Graph

Development of Content Management System with Animated Graph Development of Content Management System with Animated Graph Saipunidzam Mahamad, Mohammad Noor Ibrahim, Rozana Kasbon, and Chap Samol Abstract Animated graph gives some good impressions in presenting

More information

5.2. Click these tabs to jump to the Table of Contents, Index or start of each chapter.

5.2. Click these tabs to jump to the Table of Contents, Index or start of each chapter. 5.2 Click these tabs to jump to the, or start of each chapter. Click this button to advance to the next page. Click this button to return to the previous page. (Since this is the starting page, the [Back]

More information

Design and Implementation of cache protecting from power failure in Disk Array

Design and Implementation of cache protecting from power failure in Disk Array International Conference on Advanced Information and Communication Technology for Education (ICAICTE 2013) Design and Implementation of cache protecting from power failure in Disk Array WANG Endong, HU

More information

Design And Implementation Of Ordering System For Restaurants

Design And Implementation Of Ordering System For Restaurants Design And Implementation Of Ordering System For Restaurants V. Swapna (A), M. Firdouse Ali Khan (B) (a) Department of ECE, ATRI, Parvathapur, Hyderabad. (b) Snr.Asst.Professor, Department of ECE, ATRI,

More information

CONTENT ADAPTIVE SCREEN IMAGE SCALING

CONTENT ADAPTIVE SCREEN IMAGE SCALING CONTENT ADAPTIVE SCREEN IMAGE SCALING Yao Zhai (*), Qifei Wang, Yan Lu, Shipeng Li University of Science and Technology of China, Hefei, Anhui, 37, China Microsoft Research, Beijing, 8, China ABSTRACT

More information

FSRM Feedback Algorithm based on Learning Theory

FSRM Feedback Algorithm based on Learning Theory Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 2015, 9, 699-703 699 FSRM Feedback Algorithm based on Learning Theory Open Access Zhang Shui-Li *, Dong

More information

Application of Co-simulation Technology Based on LabVIEW and Multisim in Electronic Design

Application of Co-simulation Technology Based on LabVIEW and Multisim in Electronic Design Application of Co-simulation Technology Based on LabVIEW and Multisim in Electronic Design Yuan Wang 1, *, Liangcheng Wang 1,Xiaolan Liu 2,3, *, Mi Zhou 1 1. School of Science and Technology, Sanya College,

More information

Design of Substation and Distribution Station Monitoring System Based on DELPHI and Intelligent Modules

Design of Substation and Distribution Station Monitoring System Based on DELPHI and Intelligent Modules Journal of Information Hiding and Multimedia Signal Processing c 2016 ISSN 2073-4212 Ubiquitous International Volume 7, Number 4, July 2016 Design of Substation and Distribution Station Monitoring System

More information

W90N745 BSP Quick Start Guide

W90N745 BSP Quick Start Guide W90N745 BSP Quick Start Guide 1 Table of Contents- 1. INTRODUCTION OF THIS DOCUMENT...3 2. SYSTEM REQUIREMENT...3 3. HARDWARE CONNECTION...3 4. UCLINUX BSP INSTALLATION PROCEDURE...4 5. NON-OS BSP INSTALLATION

More information

Software Development & Education Center

Software Development & Education Center Software Development & Education Center Embedded Linux & RTOS With ARM 9 µc Embedded Linux and RTOS with ARM9 µc Introduction The course is designed for those who want to pursue Linux based Embedded Systems.

More information

Mobile Communications Client Server System for Stock Exchange e-services Access

Mobile Communications Client Server System for Stock Exchange e-services Access Mobile Communications Client Server System for Stock Exchange e-services Access E. Pop, and M. Barbos Abstract Using mobile Internet access technologies and e- services, various economic agents can efficiently

More information

RESEARCH ON CROSS PLATFORM DEVELOPMENT MODEL BASED ON QUICK QT Xiaohua Zhang1, a, Bo Huang2, b

RESEARCH ON CROSS PLATFORM DEVELOPMENT MODEL BASED ON QUICK QT Xiaohua Zhang1, a, Bo Huang2, b 6th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2016) RESEARCH ON CROSS PLATFORM DEVELOPMENT MODEL BASED ON QUICK QT Xiaohua Zhang1, a, Bo Huang2, b 1 Department

More information

USB Instruments EasyScope II for PS40M10 "Swordfish" Help

USB Instruments EasyScope II for PS40M10 Swordfish Help USB Instruments EasyScope II for PS40M10 "Swordfish" Help I EasyScope II for PS40M10 Help Table of Contents Part I Introduction 3 1 Welcome to... EasyScope II for PS40M10 3 2 EasyScope... II Features 4

More information

User s Manual for uknowva

User s Manual for uknowva User s Manual for uknowva Prepared by: Convergence IT Services Pvt. Ltd. Description uknowva is extensible Enterprise Collaboration Software that offers a private and secure platform for members of an

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

1 ZoomBrowser EX Software User Guide 5.0

1 ZoomBrowser EX Software User Guide 5.0 1 ZoomBrowser EX Software User Guide 5.0 Table of Contents (1/2) Chapter 1 Chapter 2 Chapter 3 What is ZoomBrowser EX? What Can ZoomBrowser EX Do?... 4 Guide to the ZoomBrowser EX Windows... 5 Task Buttons

More information

Development and Application of Database System for Rubber Material

Development and Application of Database System for Rubber Material 4th International Conference on Information Systems and Computing Technology (ISCT 2016) Development and Application of Database System for Rubber Material Ningfei WU, Yan CAO, Yu BAI, Hu QIAO Department

More information

ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University

ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University Prof. Sunil P. Khatri Lab exercise created and tested by: Abbas Fairouz, Ramu Endluri, He Zhou,

More information

Idea6410 Ubuntu User Manual V 0.19

Idea6410 Ubuntu User Manual V 0.19 V 0.19 Version: Ubuntu-9.04_v0.19 Linux PC environment: Ubuntu-9.04 1 1. Install Cross-compile 1.1 Open Linux-ubuntu_v0.19\cross_compile\ folder, and copy Arm-none-lunux-gnueabi-arm-2008q3-72-for-linux.tar.bz2

More information

Client Server System for e-services Access Using Mobile Communications Networks

Client Server System for e-services Access Using Mobile Communications Networks Client Server System for e-services Access Using Mobile Communications Networks Eugen Pop, Mihai Barbos, and Razvan Lupu Abstract The client server systems using mobile communications networks for data

More information

Workbench V Integrated Development Environment for Renesas Capacitive Touch

Workbench V Integrated Development Environment for Renesas Capacitive Touch User s Manual Workbench V1.06.00 Integrated Development Environment for Renesas Capacitive Touch Target Device RX Family User s Manual All information contained in these materials, including products and

More information

Design of Embedded Network Voice Communication Terminal Based on STM32 and μcosiii

Design of Embedded Network Voice Communication Terminal Based on STM32 and μcosiii Design of Embedded etwork Voice Terminal Based on STM32 and μcosiii Li Ji 1,*, Shao Qiongling 1, and Wang Shengjun 1 1 Aerospace Engineering University, The Bayi Road of Huairou District, Beijing, China

More information

Client Server System for e-services Providing in Mobile Communications Networks

Client Server System for e-services Providing in Mobile Communications Networks Client Server System for e-services Providing in Mobile Communications Networks Eugen POP, Mihai BARBOS, Razvan LUPU Abstract E-services providing is a good opportunity for business developing and financial

More information

Research on Embedded Java Virtual Machine and its Porting

Research on Embedded Java Virtual Machine and its Porting IJCSNS International Journal of Computer Science and Network Security, VOL.7 No.9, September 2007 157 Research on Embedded Java Virtual Machine and its Porting Jun QIN, Qiaomin LIN, Xiujin WANG College

More information

Research on Computer Network Virtual Laboratory based on ASP.NET. JIA Xuebin 1, a

Research on Computer Network Virtual Laboratory based on ASP.NET. JIA Xuebin 1, a International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2015) Research on Computer Network Virtual Laboratory based on ASP.NET JIA Xuebin 1, a 1 Department of Computer,

More information

Design of Greenhouse Temperature and Humidity Monitoring System Based on ZIGBEE Technique Ming Xin 1,a, Wei Zhongshan 1,b,*

Design of Greenhouse Temperature and Humidity Monitoring System Based on ZIGBEE Technique Ming Xin 1,a, Wei Zhongshan 1,b,* International Conference on Computational Science and Engineering (ICCSE 2015) Design of Greenhouse Temperature and Humidity Monitoring System Based on ZIGBEE Technique Ming Xin 1,a, Wei Zhongshan 1,b,*

More information

Professional Training Institute

Professional Training Institute . This is 4-5 month course for B.E/B. Tech/MTech/ ME/ MCA/M. Sc Candidates Pre final & Final Year with back ground preferably Electronics, Electrical, Instrumentation or Computer science. With these students

More information

: REAL TIME SYSTEMS LABORATORY DEVELOPMENT: EXPERIMENTS FOCUSING ON A DUAL CORE PROCESSOR

: REAL TIME SYSTEMS LABORATORY DEVELOPMENT: EXPERIMENTS FOCUSING ON A DUAL CORE PROCESSOR 26-797: REAL TIME SYSTEMS LABORATORY DEVELOPMENT: EXPERIMENTS FOCUSING ON A DUAL CORE PROCESSOR Mukul Shirvaikar, University of Texas-Tyler MUKUL SHIRVAIKAR received the Ph.D. degree in Electrical and

More information

The hardware implementation of PXI/PXIe consists of a chassis, controller or computer interface, and peripheral cards.

The hardware implementation of PXI/PXIe consists of a chassis, controller or computer interface, and peripheral cards. Introduction PCI extensions for Instrumentation or PXI is a computer based hardware and software platform for test and measurement systems. Developed in the late 1990 s as an open industry standard based

More information

PCI-express data acquisition card DAQ0504M User Guide

PCI-express data acquisition card DAQ0504M User Guide PCI-express data acquisition card DAQ0504M User Guide Contents Safety information... 3 About this guide... 4 DAQ0504M specifications... 5 Chapter 1. Product introduction 1-1. Package contents...... 6.

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK IMAGE ACQUISITION, COMPRESSION AND DECOMPRESSION USING ARM9 S. N. KALE 1, R. D.

More information