Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify the description for the case of frac_mode=1. #76

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion platform/drumlogue/README_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ SDK version 2.0-0 でビルドされた user units (ビルド済みのカスタ
* `init` はパラメータの初期値です. ユニットパラメータは初期化のあと, この値に設定されることが期待されます.
* `type` はパラメータの値の表示方法を設定できます, 詳細は [Parameter Types](#parameter-types) をご参照ください.
* `frac` はパラメータ値の小数部分を指定します. この値は `frac_mode` の値に応じて, 少数部のビット数または10進数として解釈されます.
* `frac_mode` は記述される小数のタイプを設定します. `0` に設定した場合は固有小数点とみなされ, `frac` ビットが小数部分であることを表します. `1` に設定した場合は, 値が小数部分を含むと仮定し, `frac` を10回かけたものになり, 1/10の増減ができるようになります.
* `frac_mode` は記述される小数のタイプを設定します. `0` に設定した場合は固定小数点とみなされ, `frac` ビットが小数部分であることを表します. `1` に設定した場合は, 小数部分に`frac` 掛ける10個の数があり, 1/10`frac`ずつの増減ができることを表します.
* `reserved` は常に0に設定する必要があります.
* `name` には12文字の名前を指定できます(7ビットASCIIのヌル終端文字である必要があります). 次の文字を使用することができます: "` ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!?#$%&'()*+,-.:;<=>@`".

Expand Down
2 changes: 1 addition & 1 deletion platform/nts-3_kaoss/README_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ NTS-3 kaoss pad kitでは下記APIの実装が必要です.

### ランタイム記述子

ランタイム記述子への参照は初期化段階でユニットに渡されます. この記述子は, 現在のデバイス, API, オーディオ・レート, バッファに関する情報と, 呼び出し可能なAPI巻子へのポインタを提供します.
ランタイム記述子への参照は初期化段階でユニットに渡されます. この記述子は, 現在のデバイス, API, オーディオ・レート, バッファに関する情報と, 呼び出し可能なAPI関数へのポインタを提供します.

```
typedef struct unit_runtime_desc {
Expand Down