We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3620afb commit cab3c41Copy full SHA for cab3c41
examples/HID/hid_generic_inout/boards.js
@@ -1,4 +1,4 @@
1
module.exports = {
2
- "Adafruit Boards":[0x239A,0xFFFF],
+ "Adafruit Boards":[0x239A,0xFFFF],
3
"TinyUSB example":[0xCAFE,0xFFFF]
4
}
examples/HID/hid_generic_inout/hid_test.js
@@ -62,7 +62,7 @@ function anySupportedBoard(d) {
62
63
64
function isDevice(board,d){
65
- // product id 0xff is matches all
+ // product id 0xff is matches all
66
return d.vendorId==board[0] && (d.productId==board[1] || board[1] == 0xFFFF);
67
68
0 commit comments