aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-12-22 21:05:31 +0000
committerQMK Bot <hello@qmk.fm>2020-12-22 21:05:31 +0000
commitdc6b0d3548fdeaff6afa48d83e9c09d80d3a0b27 (patch)
treef5a877720c896259b004ed7fa5d11e855516559b
parent1c04608b0a061b30a4c22d054b5a153b5d93793a (diff)
parentdee506c096902316136f11dca2f560a62fd61e53 (diff)
downloadqmk_firmware-dc6b0d3548fdeaff6afa48d83e9c09d80d3a0b27.tar.gz
qmk_firmware-dc6b0d3548fdeaff6afa48d83e9c09d80d3a0b27.zip
Merge remote-tracking branch 'origin/master' into develop
-rw-r--r--docs/feature_rawhid.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_rawhid.md b/docs/feature_rawhid.md
index 01e215be4..4a688fcba 100644
--- a/docs/feature_rawhid.md
+++ b/docs/feature_rawhid.md
@@ -29,7 +29,7 @@ void raw_hid_receive(uint8_t *data, uint8_t length) {
29} 29}
30``` 30```
31 31
32`raw_hid_receive` can receive variable size packets from host with maximum length `RAW_EPSIZE`. `raw_hid_send` on the other hand can send packets to host of exactly `RAW_EPSIZE` length, therefore it should be used with data of length `RAW_EPSIZE`. 32These two functions send and receive packets of length `RAW_EPSIZE` bytes to and from the host (32 on LUFA/ChibiOS/V-USB, 64 on ATSAM).
33 33
34Make sure to flash raw enabled firmware before proceeding with working on the host side. 34Make sure to flash raw enabled firmware before proceeding with working on the host side.
35 35