I have a tool that send commands to my ECU (OBD II commands). I'd like to make an emulator of my ECU. The protocol is the #6 (CAN 11/500). The tool send simply commands like "0100" / "0120" etc. I know the "answers" after sniffing" How i can answer? (i'm using C# with AT command). Thank you
1
There are 1 answers
Related Questions in DIAGNOSTICS
- Opening sheet in SwiftUI view
- Is it possible for a .NET process to be started without Event Counters?
- How to define "Dem_EventStatusType" in case the state is neither in prepassed nor in prefailed condition?
- How to use Diagnostic Tools for MAUI app on Android?
- Issue with dharma diagnostics glmm
- Modified Poisson regression test for diagnostics and assumptions
- failed connections in Azure Mariadb metrics
- Capturing Diagnostic request 27 01 / Seed using DiagGetParameterRaw on Capl/Canoe
- Application Logs can not be forward though Diagnostic setting
- testQuantiles() produces different output depending on plot=T or F
- MSVC 19.37 doesn't consistently warn on assignment in if statements
- Hex Editor - Seems that Peplink .report files have changed again, can they still be opened?
- Why does GCC 11.3.0 generate -Wformat warning on my x86_64 machine, but doesn't on godbolt x86_64 machine?
- Warning: argument 1 does not name a graphical parameter in R
- Calculqting leverage and Cook's distance in non-linear mixed effects model
Related Questions in ELM327
- Serial Port Connection to OBD II Adapter
- Can't receive/read response from OBD2 Dongle using BLE connection
- How to sent and get Response Of 01A6 (Odometer) PID with ELM327(OBD-II)
- OBD2 CAN BUS problem with data receive from AT MA
- ISO 9141 (non-OBD) protocol over ELM 327
- Reading OBD2 DTC codes procedure
- Send header and payload to ELM327 in non-CAN
- ELM 327 - how emulate the ECU answers?
- How to get some CAN address messages with ELM327
- How to send an AT commands with Header and Data Bytes
- How to send more than 8 byte message in a single frame using ELM327 device in KWP2000 protocol
- BLE and ELM327 (CAN)
- Cannot read data from ELM327 device with PySerial
- OBD2 Simulator: unable to send AT-commands
- Getting "No data" response from BOD II in android
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
(Note: This question is of very wide scope, nothing that can be properly answered here on StackOverflow).
An ECU emulator is not a trivial thing. First, decide on which layer you want to emulate (CAN-layer or just an ELM327-layer), then build this layer and add an abstraction into your OBD2 interface that allows you to read from the emulated bus instead of from real bus.