summaryrefslogtreecommitdiff
path: root/docs/ja
diff options
context:
space:
mode:
authorumi <57262844+umi-umi@users.noreply.github.com>2021-06-08 02:36:42 +0900
committerGitHub <noreply@github.com>2021-06-08 02:36:42 +0900
commit093a89c534f6d347469fa40502c33873d3f6acf2 (patch)
treecdeb3f79115e1c24e911ec659f211f709fb5bd92 /docs/ja
parentc1bd8eed762b5d761a3418f921d86345ad1b1656 (diff)
update feature_rawhid.md translation (#12759)
Diffstat (limited to 'docs/ja')
-rw-r--r--docs/ja/feature_rawhid.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ja/feature_rawhid.md b/docs/ja/feature_rawhid.md
index c99c3fd8d8..1e922625f8 100644
--- a/docs/ja/feature_rawhid.md
+++ b/docs/ja/feature_rawhid.md
@@ -1,8 +1,8 @@
# Raw HID
<!---
- original document: 0.10.47:docs/feature_rawhid.md
- git diff 0.10.47 HEAD -- docs/feature_rawhid.md | cat
+ original document: 0.12.41:docs/feature_rawhid.md
+ git diff 0.12.41 HEAD -- docs/feature_rawhid.md | cat
-->
Raw HID は、HID インタフェースを介して QMK とホストコンピュータ間の双方向通信を可能にします。これには、キーマップをその場で切り替えたり、RGB LED の色とモードを変更したりなど、多くの潜在的な使用方法があります。
@@ -34,7 +34,7 @@ void raw_hid_receive(uint8_t *data, uint8_t length) {
}
```
-`raw_hid_receive` はホストから最大長 `RAW_EPSIZE` の可変サイズのパケットを受信することができます。一方、`raw_hid_send` はパケットを厳密に `RAW_EPSIZE` の長さで送信するため、長さ `RAW_EPSIZE` のデータを使う必要があります。
+これら2つの関数は、ホストとの間で長さ `RAW_EPSIZE` バイトのパケットを送受信します (LUFA/ChibiOS/V-USB では 32、ATSAM では 64)。
ホスト側での作業を進める前に、raw 対応のファームウェアを書き込むようにしてください。