Overview

CarDAQ-Plus is the most validated and accepted J2534 device in the world. It has been on the market longer than any other J2534 device, it has been approved by more automakers than any other product, and has been called the "golden standard" by customers and competitors alike.

OEM and Development Features

CarDAQ-Plus has many uses beyond the independent repair shop. The CarDAQ-Plus was designed to be a high performance development tool. It performs the standard PassThru J2534 functionality, adds  an internal 200MHz embedded Linux host, an internal and optional external Compact Flash slot, and an internal web server for thin-client applications. In addition to acting as a laptop-to-vehicle PassThru device, it can also host diagnostic and data logging applications on-board.

Compact Flash expansion

The CarDAQ-Plus has one internal and one optional external Compact Flash slot that can be used simultaneously. The external Compact Flash slot is optional and must be ordered at the time of purchase. The Compact Flash expansion slots may also be used for other CF peripherals, such as GPS receivers, expanded storage, modems, and any other CF card that supports Linux. The CarDAQ-Plus will support up to 8GB of memory per Compact Flash slot

Remote Diagnostics and Standalone operations

CarDAQ-Plus runs it's own operating system, embedded Linux, which allows it to be used as a standalone tool without a PC attached during operation. The Linux installation includes a file and web server which could simplify development of remote diagnostics and management applications. Imagine writing your own C/C++ application to perform an on-road test. Your program could access GPS compact flash card to capture location information about the test-drive, or use a cellular modem and download telemetry from live tests! For standalone applications, this provides the features of a PC host and a PassThru device all in one package.

Tools available for development

Drew Technologies provides an application programmer interface (DLL) for OEMs, integrators, or end-users to develop their own PassThru (SAE J2534) applications. You can use any PassThru (J2534) compliant application with the CarDAQ-Plus. You can also Create your own applications in LabVIEW™, C or Visual Basic. Use your favorite language, including: TCL, Perl, .Net, Java, or C.

Specifications

  • Bus Protocols
    • CAN Bus (capable of ISO 15765, GMLAN, J1939, and ISO14229)
    • 2nd CAN (Dual or Single Wire)
    • Ford SCP (J1850PWM)
    • GM Class2 (J1850VPW)
    • KWP2000 (ISO9141/14230)
    • Chrysler SCI (J2610)
  • PC Interfaces
    • USB (now included)
    • Wired RJ45 Ethernet
    • Supports Windows XP, Vista & 7 (32 & 64bit)
  • Other
    • Compliant to SAE J2534 (Feb 2002) and SAE J2534-1 (Dec 2004)
    • Compliant to ISO 22900-1 MVCI physical layer
    • Programming voltage on J1962 pin 6, 9, 11, 12, 13, 14 or Aux
    • 6 General purpose analog inputs (0-27V, 2Ksps, 12 bit)
    • Ground pins 9, 12, or 15
    • Internal Compact Flash slot (must be configured when ordering)
    • Optional external Compact Flash slot
  • Product Specifications
    • Operating voltage: 7 – 26 Volts
    • Size: 1.25”H x 7.5”D x 5.25”W
    • Operating Temperature: Commercial Range (0 to +70 C)
    • ISO22900 Compliant for GM’s Tech2WIN software

CarDAQ-Plus的更多相关文章

  1. SAE J2534 Pass-Thru API

    Connects to the OBDII J1962 DLC and supports the following protocols. 1 CAN2 Single Wire2 J1850PWM+ ...

  2. 让Drewtech的J2534 ToolBox 软件支持任何J2534的设备

    更改windows注册表中的FunctionLibrary和ConfigApplication,将DLL和exe路径替换原来的,其他不要动. 或者 create second key in regis ...

  3. js大作业(0)

    DAY1:在看HTML5游戏开发实战.手写了一遍乒乓球.自己玩了半小时.实话讲,和本科学的MFC差别不大.通过setInterval函数获取用户的输入 从而允许多用户操作.parseInt把字符串化为 ...

随机推荐

  1. jquery validate如何不提交表单就做验证(ajax提交数据)

    if($("#FromID").valid()){ $.ajax({ type:'post', url:'/CampaignOrderRelations/save', data:{ ...

  2. SpringMvc+jquery easyui模块开发7步骤

    搞了一段java的开发,总结出模块开发经验: SpringMvc+jquery easyui模块开发7步骤:1) 数据表(table):                定义表结构并创建数据表t_use ...

  3. java事务的处理

    java的事务处理,如果对数据库进行多次操作,每一次的执行或步骤都是一个事务. 如果数据库操作在某一步没有执行或出现异常而导致事务失败,这样有的事务被执行有的就没有被执行,从而就有了事务的回滚,取消先 ...

  4. hdu 1527(威佐夫博奕)

    题意:容易理解. 分析:威佐夫博奕的模板题. 代码实现: #include<stdio.h> #include<string.h> #include<math.h> ...

  5. android操作文件

    Android中读取/写入文件的方法,与Java中的I/O是一样的,提供了openFileInput()和openFileOutput()方法来读取设备上的文件.但是在默认状态下,文件是不能在不同的程 ...

  6. size_type、size_t、differentce_type以及ptrdiff_t

      目录(?)[-] size_type size_t different_type ptrdiff_t size_t是unsigned类型,用于指明数组长度或下标,它必须是一个正数,std::siz ...

  7. 利用 Jquery Deferred 异步你的程序

    最近在做公司QA系统改造时,有这样的一个场景. QA系统中有些数据项需要从JIRA平台(一个国外项目与事务跟踪工具)中获取,JIRA平台提供了很完善的Rest API. 现在的要求是,在QA系统中提交 ...

  8. 单机版搭建Hadoop环境图文教程详解

    安装过程: 一.安装Linux操作系统二.在Ubuntu下创建hadoop用户组和用户三.在Ubuntu下安装JDK四.修改机器名五.安装ssh服务六.建立ssh无密码登录本机七.安装hadoop八. ...

  9. linux中清除cache的方法

    在进行测试文件导入的时候,发现内存占用很大,如下所示: [root@python ~]# vmstat 1 -S M 3 procs -----------memory---------- ---sw ...

  10. C++中string 的使用

    string类的构造函数:string(const char *s);    //用c字符串s初始化string(int n,char c);     //用n个字符c初始化此外,string类还支持 ...