SAE J1850 VPW/PWM物理层----带示例原理图!!!

news/2024/12/21 2:17:22/

原文地址::https://blog.csdn.net/sun520up/article/details/100515368

相关文章

1、SAE J1850 汽车总线协议 VPW 物理层驱动程序在STM32芯片上的实现----https://blog.csdn.net/sun520up/article/details/100515133?utm_medium=distribute.pc_relevant.none-task-blog-baidujs-2

2、一种基于j1850总线驱动电路的制作方法----http://www.xjishu.com/zhuanli/54/201020154937.html

3、OBD-J1850VPW----http://www.pudn.com/Download/item/id/987986.html

4、the SAE J1850 VPWM----http://www.pudn.com/Download/item/id/3354466.html

 

J1850

The SAE J1850 bus bus is used for diagnostics and data sharing applications in vehicles. The J1850 bus takes two forms:

  • 41.6Kbps Pulse Width Modulated (PWM) two wire differential approach (Ford vehicles)
  • 10.4Kbps Variable Pulse Width (VPW) single wire approach (GM vehicles)

The single wire approach may have a bus length up to 35 meters (with 32 nodes). Developed in 1994, J1850 may be phased out for new designs. The J1850 Interface is a class B protocol.

A high resides between 4.25 volts and 20 volts, a low is any thing below 3.5 volts. High and low values are sent as bit symbols (not single bits). Symbols times are 64uS and 128uS for the single wire approach. The bus uses a weak pull-down, the driver needs to pull the bus high, high signals are considered dominant. A passive logic 1 is sent as a 128uS low level, an active logic 1 is sent as a 64uS high. A passive logic 0 is sent as a 64uS low level, an active logic 0 is sent as a 128uS high. The J1850 protocol uses CSMA/CR arbitration.

J1850 Frame structure

The frame consists of a Start Of Frame [SOF], which is high for 200uS.

The Header byte follows the SOF and is one byte long.

The data follows the header byte.

The one byte CRC [Cyclical Redundancy Check] follows the data field.

After the CRC an End Of Data [EOD] symbol is sent.

The EOD is sent as a 200uS low pulse.

J1850 Transmission Signal Format

 

In many cases the J1850 interface bits will be found on an OBDII connector inside a passenger car.

OBDII [On-Board Diagnostics II] defines a communications protocol and a standard connector to acquire data from passenger cars.

However because of the age of the J1850 bus standard, it may not reside on newer late model vehicles which use CAN-BUS.

Real J1850 PWM signal as measured in our lab

 

http://www.emotive.de/en/de/doc/car-diagnostic-systems/bus-systems/sae-j1850

 

 

 

 

http://www.shieldedpair.net/BAE5030/Lectures/J1850%20Introduction.pdf

VPW Waveform

PWM Waveform

 

http://www.obddiag.net/allpro.html

http://www.obddiag.net/images/allprousb.pdf

 

 


http://www.ppmy.cn/news/690092.html

相关文章

CAN/J1850/

(1)CAN:(差分信号)有信号CANH3.5V,CANL1.5V,            没有信号CANH2.5V,CANL2.5V 速率:CAN系统又分为高速和低速,高速CAN系统采用硬线是动力型&#xff0…

hdu 1850

题目 &#xff1a;Problem - 1850 (hdu.edu.cn) #include<bits/stdc.h> using namespace std; int main(){int m,a[110];while(scanf("%d",&m)1&&m){int d0,ans0;for(int i0;i<m;i){scanf("%d",&a[i]);d^a[i];}if(!d){printf(&…

SAEJ1850 CRC算法

在实际项目的开发中,常见的OEM的算法有CRC8,CRC32等。 以SAE J1850的CRC为例,目前常用的有两种方式,一种是多项式的算法,另一种是table查表的方法。 本文以table查表的方法为例,如下为具体的SAE J1850 CRC-8算法: #define CRC8_TABLELENGTH 256u const unsigned char C…

STM32F1_HAL库用户使用手册UM1850

STM32F1_HAL库用户使用手册UM1850英文官方原文档下载 目录 STM32F1_HAL库用户使用手册UM1850英文官方原文档下载1.预览图片2.官方下载3.云盘下载 1.预览图片 2.官方下载 找到ST官网&#xff0c;搜索栏主题词选择“资源/Resources”&#xff0c;直接搜索UM1850即可。 下载地址…

LintCode 1850捡苹果

创建两个数组&#xff0c;存放两个人捡苹果的数据&#xff0c;最后从这个两个数据中取出两个不相邻的相加&#xff0c;与以前的比较&#xff0c;最后得出最大值&#xff0c; public class Solution {/*** param a: a list of integer* param k: a integer* param l: a integer…

H3C S1850v2 二层交换机命令

initialize 删除启动配置文件并重启系统 ipsetup 配置VLAN-interface 1的IP地址 ipsetup ip-address 192.168.0.211 24 default-gateway 192.168.0.1 修改管理IP地址 192.168.0.211 掩码24&#xff0c;网关192.168.0.1 password本地用户密码 ping ping quit 退出当前命令…

万用表检定仪TD1850多用表校准系统

TD1850多用表校准系统是一款多功能校准器&#xff0c;集交直流电压标准源、电流标准源、电阻标准源等功能于一体&#xff0c;准确度等级为0.05级&#xff0c;可覆盖三位半数字/模拟多用表或单一功能的电压表、电流表、电阻表的校准&#xff0c;具有极高的性价比。 2. 产品特征…

汽车通信协议系列3_SAE J1850_PWM

概述 这个协议主要是在美国车厂比较普遍,比如福特ford,通用汽车GM,克莱斯勒(Chrysler)。这几个车厂虽然都实行这个协议标准,但是实际的协议框架都不太一样。 J1850总线有两种形式: PWM(Pulse Width Modulated):脉宽调制。运用2条线路以差分方式进行传输(两线差分电…