http://www.obdsol.com/stn1110/

    • Safe, secure bootloader. Reflash the firmware in the field, even over a poor quality link and avoid expensive product recalls.
    • Fully compatible with ELM327 command set, ensuring out-of-the-box compatibility with the dozens of existing software applications.
    • Extended “ST” command set provides access to enhanced functionality, without compromising compatibility.
    • PowerSave mode with multiple sleep and wakeup triggers. Ideal for permanent in-vehicle setups, device can be left connected for extended periods of time without draining the battery.
    • Perfect form factor for any application. STN1110 is available in SPDIP, SOIC and QFN packages.
    • Support for all legislated OBD II protocols:
      • ISO 15765-4 (CAN)
      • ISO 14230-4 (Keyword Protocol 2000)
      • ISO 9141-2 (Asian, European, Chrysler vehicles)
      • SAE J1850 VPW (GM vehicles)
      • SAE J1850 PWM (Ford vehicles)
    • Support for non-legislated OBD protocols:
      • ISO 15765
      • ISO 11898 (raw CAN)
    • Support for SAE J1939 OBD protocol

http://www.obdsol.com/downloads/stn1110_vs_elm327.pdf

Quick Overview
STN1110 isthe world’ssmallest, lowest costmultiprotocolOBD toUART interpreterIC. Tomaintain compatibility with
existing applications, STN1110 hasfullsupportforthe ELM327 command set, while outperforming the original ELM327
IC in every category: price,size,stability, performance, and features.

https://github.com/nabilt/Bluetooth-ODB-2-Adapter/blob/master/obd_sch.pdf

http://sigalabs.com/shop/vehicle-obd2-shield/

https://www.sparkfun.com/tutorials/294

https://www.sparkfun.com/products/9555

https://www.sparkfun.com/datasheets/Widgets/OBD-II-UART-v13.pdf

STN1110 Multiprotocol OBD to UART Interpreter的更多相关文章

  1. STN1170 Multiprotocol OBD to UART Interpreter

    http://www.obdsol.com/stn1170/ STN1170 supports the following protocols: all legislated OBD II proto ...

  2. ELM323 - OBD (ISO) to RS232 Interpreter (v2.0)

    http://elmelectronics.com/DSheets/ELM323DS.pdf

  3. ELM322 - OBD (VPW) to RS232 Interpreter (v2.0)

    http://elmelectronics.com/DSheets/ELM322DS.pdf

  4. ELM320 OBD(PWM) to RS232 Interpreter

    http://elmelectronics.com/DSheets/ELM320DS.pdf

  5. OBD芯片应用开发手册 OBD2开发 内部资料分享 汽车电子通讯开发TDA61 TDA66芯片

    OBD产品及各种汽车电子相关的开发.往往需要开发者学习各种汽车协议,深入了解全部OBD规范和汽车各性能参数.这往往需要开发者很长的时间学习研究,大大延缓了OBD产品的上市开发进度.为此深圳芯方案电子公 ...

  6. OBD Experts OBD II Software OBD II Protocol Stack

    http://www.obdexperts.co.uk/stack.html OBD II Software OBD Experts can provide you with ready to use ...

  7. MSP432 BSL流程(UART)

    升级流程 PC程序会解析脚本中的命令,根据命令码做相应的操作.数据来自于命令后的文件(当前目录下的数据文件) # cat script_P4xx_uart.txt LOG //记录日志 MODE P4 ...

  8. Dreamweaver 扩展开发:C-level extensibility and the JavaScript interpreter

    The C code in your library must interact with the Dreamweaver JavaScript interpreter at the followin ...

  9. OpenCASCADE Expression Interpreter by Flex & Bison

    OpenCASCADE Expression Interpreter by Flex & Bison eryar@163.com Abstract. OpenCASCADE provide d ...

随机推荐

  1. SyntaxError: Missing parentheses in call to 'print' 这个错误原因是Python版本问题

    问题 print "www.baidu.com"           Python2 print ("www.baidu.com")     Python3 出 ...

  2. 常见的 JavaScript 内存泄露

    什么是内存泄露 指由于疏忽或错误造成程序未能释放已经不再使用的内存.内存泄漏并非指内存在物理上的消失, 而是应用程序分配某段内存后,由于设计错误,导致在释放该段内存之前就失去了对该段内存的控制,从而造 ...

  3. ***PHP5.6.x SSL3_GET_SERVER_CERTIFICATE:certificate verify failed 解决方案

    centos: 在php.ini中增加一行 1 openssl.cafile=/etc/pki/tls/certs/ca-bundle.crt 重启服务器使修改生效

  4. 学习build-web-application-with-golang第四章内容

    GITHUB网址: https://github.com/astaxie/build-web-application-with-golang 内容 4.表单 4.1 处理表单的输入 4.2 验证表单的 ...

  5. HTML canvas fillText()与measureText()方法

    HTML5 canvas fillText() 方法 实例 使用 fillText(),在画布上写文本 "你好!word!" 和 "我是w3c": JavaSc ...

  6. zookeeper的简单使用

    前言 最近项目中要使用基于zookeeper的集中配置管理系统,而对于zookeeper仅在当初使用阿里开源分布式服务调用框架dubbo时简单的了解一下.本 文的主要目的,调用zkclient (ma ...

  7. mysql 事务回滚

    begindeclare t_error integer default 0;  //添加变量t_error并赋初始值为0declare continue handler for sqlexcepti ...

  8. U3D 基础

    千里之行,始于足下! 最先执行的方法是:1.(激活时的初始代码)Awake2.Start3.Update(FixUpdate,LateUpdate)4.渲染模块(OnGUI)5.再向后,就是卸载模块( ...

  9. js的循环

    1.for(){} 这种方法可能每个人都用过,不多说. 2.ES5的forEach myArray.forEach(function (value) { console.log(value); }); ...

  10. 爱奇艺全国高校算法大赛初赛B

    二分,验证. 二分一下答案,然后验证一下统计个数能否满足即可. #include <cstdio> #include <cmath> #include <cstring& ...