You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I use the official C++sdk of Raspberry PI, which does not know what version of tinyusb is
I tried to get the rp2040 analog keyboard to output an "m" but it didn't work
'''
#include <stdio.h>
#include "pico/stdlib.h"
#include "tusb.h"
#include "tusb_config.h"
#include "tusb_option.h"
#include "class/hid/hid.h"
#include "class/hid/hid_device.h"
#define CFG_TUSB_DEBUG 0 // 调试级别
uint8_t report[8] = {0};
tusb_desc_device_t const desc_device = {
.bLength = sizeof(tusb_desc_device_t),
.bDescriptorType = TUSB_DESC_DEVICE,
.bcdUSB = 0x0200,
.bDeviceClass = TUSB_CLASS_MISC,
.bDeviceSubClass = MISC_SUBCLASS_COMMON,
.bDeviceProtocol = MISC_PROTOCOL_IAD,
.bMaxPacketSize0 = CFG_TUD_ENDPOINT0_SIZE,
.idVendor = 0xCafe,
.idProduct = 0x4004,
.bcdDevice = 0x0100,
.iManufacturer = 0x01,
.iProduct = 0x02,
.iSerialNumber = 0x03,
.bNumConfigurations = 0x01
};
// 必须放在所有引用此数组的代码之前
uint8_t const desc_hid_report[] = {
TUD_HID_REPORT_DESC_KEYBOARD(
HID_REPORT_ID(1) // 指定报告ID(通常为1)
)
};
uint8_t const desc_configuration[] = {
TUD_CONFIG_DESCRIPTOR(1, 1, 0, TUD_CONFIG_DESC_LEN + TUD_HID_DESC_LEN, TUSB_DESC_CONFIG_ATT_REMOTE_WAKEUP, 100),
TUD_HID_DESCRIPTOR(0, 0, false, sizeof(desc_hid_report), 0x81, CFG_TUD_HID_EP_BUFSIZE, 10)
};
char const* string_desc_arr[] = {
(const char[]) { 0x09, 0x04 }, // 0: 支持的语言 (英语)
"TinyUSB", // 1: 制造商
"HID Keyboard", // 2: 产品
"123456", // 3: 序列号
};
int main()
{
tusb_rhport_init_t dev_init = {
.role = TUSB_ROLE_DEVICE,
.speed = TUSB_SPEED_AUTO
};
tusb_init(0, &dev_init);
}
'''
Beta Was this translation helpful? Give feedback.
All reactions