We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1e629dd + 2a3f699 commit 98364bcCopy full SHA for 98364bc
.gitignore
@@ -1,12 +1,14 @@
1
2
\.vs/
3
+\.idea/
4
5
windows/\.vs/wooting-analog-reader/v14/\.suo
6
7
windows/Release/
8
windows/Backup/
9
windows/Debug/
10
windows/x64/
11
+windows/**/x64/
12
13
*.htm
14
src/wooting-rgb-sdk.c
@@ -205,8 +205,12 @@ bool wooting_rgb_array_update_keyboard() {
205
if (!wooting_rgb_kbd_connected()) {
206
return false;
207
}
208
-
209
- if (wooting_usb_use_v2_interface()) {
+
+ if (wooting_usb_use_multi_report()) {
210
+ if (!wooting_usb_send_buffer_v3(*rgb_buffer_matrix)) {
211
+ return false;
212
+ }
213
+ } else if (wooting_usb_use_v2_interface()) {
214
if (!wooting_usb_send_buffer_v2(*rgb_buffer_matrix)) {
215
216
0 commit comments