0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

概要

TunerStudioを、究める。
一から、iniファイルを作ってみる。

一から、iniファイルを作ってみる手順

ECUの設定を変更するための(設定定数)

変数名 タイプ データ型 オフセット 単位 倍率 変換オフセット 最小値 最大値 小数点桁数
REQ_FUEL scalar F32 0 "ms" 1.0 0.0 0.0 50.0 2
CRANKING_FUEL scalar F32 4 "ms" 1.0 0.0 0.0 100.0 2
FIXED_IGN_ANG scalar F32 8 "deg BTDC" 1.0 0.0 -10.0 60.0 1

iniファイルを書く。

セクション[Constants]は、ECUの設定を変更するための(設定定数)の対応表です。

[Constants]
    endianness      = little
    nPages          = 1
    page            = 1
    pageSize        = 12
    pageReadCommand = "C"
    pageValueWrite  = "W"
    REQ_FUEL        = scalar, F32,   0, "ms",       1.0, 0.0, 0.0, 50.0, 2
    CRANKING_FUEL   = scalar, F32,   4, "ms",       1.0, 0.0, 0.0, 100.0, 2
    FIXED_IGN_ANG   = scalar, F32,   8, "deg BTDC", 1.0, 0.0, -10.0, 60.0, 1

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?