Moxa Technologies ThinkCore DA-660-16-CE User Manual

Browse online or download User Manual for Supplementary music equipment Moxa Technologies ThinkCore DA-660-16-CE. Moxa Technologies ThinkCore DA-660-16-CE User`s manual [en]

  • Download
  • Add to my manuals
  • Print

Summary of Contents

Page 1 - User’s Manual

ThinkCore DA-660-8/16-CE User’s Manual Second Edition, May 2006 www.moxa.com/product Moxa Systems Co., Ltd. Tel: +886-2-8919-1711 Fax: +886-2-8919-

Page 2 - Disclaimer

22 Chapter 2 Getting Started In this chapter, we explain how to use a PC to operate a DA-660 computer. For clarity, the PC is referred to as a dev

Page 3 - Table of Contents

ThinkCore DA-660 WinCE User’s Manual Getting Started 2-2Starting Your DA-660 Computer Connect the power cord that is shipped with the package to the

Page 4

ThinkCore DA-660 WinCE User’s Manual Getting Started 2-3Server (DNS) is at 192.168.2.6. Execute the following command. \> netconfig –n LAN1 –i 19

Page 5 - Introduction

ThinkCore DA-660 WinCE User’s Manual Getting Started 2-4Deleting a Group: To remove a group, use the command userdel –g <groupName>. \> use

Page 6 - Overview

ThinkCore DA-660 WinCE User’s Manual Getting Started 2-5 \> time The current time is: 5:27:17 PM Enter the new time (hh:mm:ss): 16:02:00 \> t

Page 7 - Software Features

ThinkCore DA-660 WinCE User’s Manual Getting Started 2-6Adapter Index: 3 Address: 78 56 34 91 cc dd DHCP Enabled: NO Host name: DA660CE Domain Name

Page 8

ThinkCore DA-660 WinCE User’s Manual Getting Started 2-7SNMP Manager An SNMP manager is an SNMP application that generates queries to SNMP-agent app

Page 9 - RS-232/422/485 Serial Ports

33 Chapter 3 Web-based Management System Note: Internet Explorer 5.5 or above is required to use the web based management system. DA-660 ready-to-

Page 10 - Getting Started

ThinkCore DA-660 WinCE User’s Manual Web-based Management System 3-2System Information After you logon successfully, the main page displays the syst

Page 11 - [-i <IP address>]

ThinkCore DA-660 WinCE User’s Manual Web-based Management System 3-3Serial Port Configuration The target computer consists of multiple high-performa

Page 12 - User/Group Management

ThinkCore DA-660-8/16-CE User’s Manual The software described in this manual is furnished under a license agreement and may be used only in accordanc

Page 13

ThinkCore DA-660 WinCE User’s Manual Web-based Management System 3-4Launching Processes Automatically To have your application start on boot, do the

Page 14

ThinkCore DA-660 WinCE User’s Manual Web-based Management System 3-5Binary/Text File Management On a PC, it is certainly convenient to have a friend

Page 15 - SNMP Agent

44 Chapter 4 Application Development Application development on the DA-660 computer can be accomplished with a number of well-known tools that are

Page 16 - SNMP Manager

ThinkCore DA-660 WinCE User’s Manual Application Development 4-2Installing Development Tools (IDEs) Building applications can be done with a number

Page 17 - Web-based Management System

ThinkCore DA-660 WinCE User’s Manual Application Development 4-3Installing MOXA Windows® CE 5.0 C/C++ SDKs After installing eVC 4.0 on the developme

Page 18 - System Information

ThinkCore DA-660 WinCE User’s Manual Application Development 4-43. Type your name for User Name, the name of your company for Organization, and the

Page 19 - Serial Port Configuration

ThinkCore DA-660 WinCE User’s Manual Application Development 4-55. If you have a folder preference where you want the SDK to reside, click Change a

Page 20 - Services Monitoring/Control

ThinkCore DA-660 WinCE User’s Manual Application Development 4-67. Wait for the installation to be completed. 8. Once the installation is complet

Page 21 - Binary/Text File Management

ThinkCore DA-660 WinCE User’s Manual Application Development 4-7Developing eMbedded Visual C++ 4.0 applications with an imported SDK 1. Start Micro

Page 22 - Application Development

ThinkCore DA-660 WinCE User’s Manual Application Development 4-87. Develop your application. 8. From the Build menu, choose Rebuild All to compil

Page 23

Table of Contents Chapter 1 Introduction ...1-1 Overv

Page 24

ThinkCore DA-660 WinCE User’s Manual Application Development 4-97. Develop your application. 8. From the Device toolbar, choose Windows CE.Net Dev

Page 25

ThinkCore DA-660 WinCE User’s Manual Application Development 4-104. From the File menu, choose New Æ Project. 5. Remove the original reference li

Page 26

ThinkCore DA-660 WinCE User’s Manual Application Development 4-116. Add Windows CE 5.0 .Net Class DLL to the References from C:\Program Files\Micro

Page 27

ThinkCore DA-660 WinCE User’s Manual Application Development 4-122. Click Device Option. 3. Click Properties… from the Options pop-up window.

Page 28

ThinkCore DA-660 WinCE User’s Manual Application Development 4-134. Click Configure… from the Windows CE 5.0 Device Properties pop-up window. 5.

Page 29

ThinkCore DA-660 WinCE User’s Manual Application Development 4-147. Click Connect to Device. 8. Wait for the connection to be made. 9. Start th

Page 30

ThinkCore DA-660 WinCE User’s Manual Application Development 4-15Remote Tool #2: Remote File Explorer Assume that you have configured a remote conne

Page 31

ThinkCore DA-660 WinCE User’s Manual Application Development 4-163. Start using the tool to navigate files and directories.

Page 32

55 Chapter 5 Programming Examples Embedded Visual C++4 Examples The following examples are designed to ease application development. Find and copy

Page 33

ThinkCore DA-660 WinCE User’s Manual Programming Examples 5-2Example #1—MOXA UART Supporting RS-232/422/485 The following C/C++ code shows a sample

Page 34

Chapter 5 Programming Examples ...5-1 Embedded Visual C++4 Examples...

Page 35

ThinkCore DA-660 WinCE User’s Manual Programming Examples 5-3 CloseHandle(hCom); return NULL; } return hCom; } //=====

Page 36

ThinkCore DA-660 WinCE User’s Manual Programming Examples 5-4 if (rCom == NULL) { printf("Fail to create read port\n");

Page 37

ThinkCore DA-660 WinCE User’s Manual Programming Examples 5-5Depending on the serial port to which a device connects, the target computer supports s

Page 38 - Programming Examples

ThinkCore DA-660 WinCE User’s Manual Programming Examples 5-6y In the Solution Explorer View, add mxdevice.dll to the reference section. y Click O

Page 39

ThinkCore DA-660 WinCE User’s Manual Programming Examples 5-7 ref byte lpInBuffer, int nInBufferSize, ref byte lp

Page 40

ThinkCore DA-660 WinCE User’s Manual Programming Examples 5-8 { return SetComPortInterface(RS422_MODE); } public

Page 41

ThinkCore DA-660 WinCE User’s Manual Programming Examples 5-9 private void ErrorEvent(object sender, SerialErrorReceivedEventArgs e)

Page 42 - Example #2—Buzzer

ThinkCore DA-660 WinCE User’s Manual Programming Examples 5-10 class Program { static void Main(string[] args) {

Page 43

ThinkCore DA-660 WinCE User’s Manual Programming Examples 5-114. Add a DWORD value named Port. (The default value must be zero). 5. Modify the valu

Page 44

ThinkCore DA-660 WinCE User’s Manual Programming Examples 5-12I have a program under .NET Compact Framework 1.0 (CF1.0). Can I run it on your comput

Page 45

11 Chapter 1 Introduction Microsoft® Windows® CE 5.0 is an open, scalable, 32-bit operating system (OS) that allows you to build a wide range of i

Page 46

AA Appendix A Using the LCM Keypad Da-660 has an LCM and keypad that provide users with on-site parameter readings, and the ability to modify the

Page 47 - Frequently Asked Questions

ThinkCore DA-660 WinCE User’s Manual Frequently Asked Questions A-1Main Menu Press “﹀"or use “SEL” to select an item. Press “﹀"or use “SEL” to sel

Page 48

BB Appendix B Firmware Upgrade Procedure MOXA’s engineering division continuously develops software features to improve the quality and functional

Page 49

ThinkCore DA-660 WinCE User’s Manual Frequently Asked Questions B-15. Input the full path of the firmware file and press Enter. The upgrade process

Page 50 - Using the LCM Keypad

ThinkCore DA-660 WinCE User’s Manual Frequently Asked Questions B-27. Enter “Y” to reboot the target computer.

Page 51

CC Appendix C Service Information This appendix shows you how to contact MOXA for information about this and other products, and how to report pro

Page 52 - Firmware Upgrade Procedure

ThinkCore DA-660 WinCE User’s Manual Service Information C-2MOXA Internet Services Customer satisfaction is our primary concern. To ensure that cust

Page 53

ThinkCore DA-660 WinCE User’s Manual Service Information C-3Problem Report Form MOXA DA-660 Series Customer name: Company: Tel: Fax: Email: Date:

Page 54

ThinkCore DA-660 WinCE User’s Manual Service Information C-4Product Return Procedure For product repair, exchange, or refund, the customer must: 

Page 55 - Service Information

ThinkCore DA-660 WinCE User’s Manual Introduction 1-2Overview The ThinkCore DA-660 WinCE embedded computer is ideal for reliable, small-footprint, p

Page 56 - MOXA Internet Services

ThinkCore DA-660 WinCE User’s Manual Introduction 1-3Model DA-660-8-CE DA-660-16-CE CPU Intel XScale IXP-422 266 MHz RAM 128 MB Flash 32 MB LAN Au

Page 57 - MOXA DA-660 Series

ThinkCore DA-660 WinCE User’s Manual Introduction 1-4y Microsoft® Foundation Classes (MFC)—MFC is a comprehensive class library and complete object

Page 58 - Product Return Procedure

ThinkCore DA-660 WinCE User’s Manual Introduction 1-5Obtaining the Firmware Build Version There are three ways to obtain the firmware version of the

Comments to this Manuals

No comments