×

用于Nucleo32和CubeMX第2部分的USB HID

消耗积分:0 | 格式:zip | 大小:0.03 MB | 2022-11-24

分享资料个

描述

用于 Nucleo32 和 CubeMX 第 2 部分的 USB HID

为了构建带有物理按钮和滑翔机的操纵杆,我们使用第 1 部分中的项目带有 USB 接口的 Nucleo32 STM32L432KC 板。

 
 
 
pYYBAGN-z--ACpZBAAJqO9eBzwg773.png
 
1 / 2Nucleo32 连接布局
 

我们所要做的就是在设计中添加模拟和数字 IO。模拟端口 PA3 和 PA4(arduino A2 和 A3 端口),数字端口 PA5 和 PA6(Arduino A4 和 A5),见示意图

立方体MX

这是在 CubeMX 中完成的,增加了两个模拟 IO,单端。我们使用 8 位,因为这已经足够了,并使用轮询机制来检查模拟转换的数据。(已停止转换,2 个通道,由软件触发,无 DMA)。ADC 通道的“等级”给出了转换的顺序,请务必在此处设置两个通道。

我们将两个 10Kohm 电位计连接到 3.3V 和 Gnd,并将转轮连接到模拟端口。对于数字按钮,为 GPIO 分配一个内部上拉电阻。按钮按下强制 IO 接地 - 参见原理图

生成项目(或在 CubeIDE 中加载完整项目),注意重新覆盖保存的 USB 类描述符,因为一旦从 CubeMX 生成新代码,它们就会被覆盖。原件位于 HID 文件夹中的 zip 文件中。

0x05, 0x01, // Usage Page ( Generic Desktop controls)
0x09, 0x04, // Usage (Joystick)
0xA1, 0x01, // Collection (Application)
	0xA1, 0x02, // Collection (Logical)
		0x05, 0x01, // Usage Page (Generic Ctrls)
		0x09, 0x30, // Usage X
		0x09, 0x31, // Usage Y
		0x15, 0x81, // Logical Minimum (0)
		0x25, 0x7F, // Logical Maximum (0xfcf)
		0x75, 0x08, // Report Size (8) -> 8 bits (1 byte value)
		0x95, 0x02, // Report Count (2) -> 2x = 2 bytes
		0x81, 0x02, // Input (Data,Var,Abs,...)
		0x05, 0x09, // Usage Page (Button)
		0x09, 0x01, // Usage Button1
		0x09, 0x02, // Usage Button2
		0x15, 0x00, // Logical Minimum (0)
		0x25, 0x01, // Logical Maximum (1)
		0x75, 0x01, // Report Size (1) -> 1 bit
		0x95, 0x02, // Report Count (2) -> 1 value : need to stuff 6 more bits
		0x81, 0x02, // Input (Data,Var,Abs,...)
		0x75, 0x06, // Report Size (6) -> 6 bit
		0x95, 0x01, // Report Count (1) -> 1 value : need to stuff 6 more bits
		0x81, 0x03, // Input (Const,Var,Abs,,,,,) CONSTANT type !!
	 0xC0, // end collection Logical
0xC0, // End Collection =>  48 bytes , report 2 bytes for XY and 1byte for buttons

立方IDE

USB接口类似于one inb Part1,只是我们多加了一个按钮。USB 报告保持相同的 2 字节模拟值,按钮的 1 字节值 - bit0 和 bit1。

出于调试目的,main() 中可能有一些文本消息,使用 sprintf() 到文本缓冲区,发送到 uart2(调试器的虚拟端口)

模拟值通过启动 ADC、轮询数据并读取第一个值来读取。第二轮轮询将加载第二个 ADC 值,如在 CubeMX 中的排名中设置的那样。

// Start ADC Conversion
HAL_ADC_Start(&hadc1);
HAL_ADC_PollForConversion(&hadc1, 10);  // Poll ADC1 Perihperal & TimeOut = 10mSec
raw = HAL_ADC_GetValue(&hadc1);         // Read The first ADC , this is 32bit value!
 gameHID.JoyX = (int8_t) raw-127; 	// cast to singed int

HAL_ADC_PollForConversion(&hadc1, 10);  // Poll ADC1 Perihperal & TimeOut = 10mSec
raw =  HAL_ADC_GetValue(&hadc1); 	// Read The second ADC Conversion
 gameHID.JoyY = (int8_t) raw-127; 	// cast to singed int
HAL_ADC_Stop(&hadc1);

// READ IO's
raw =   ( ~HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_5) )&0x01;    // bit0
raw +=  ( ~HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_6)<<1 )&0x02; // bit1
 gameHID.JoyB1 = (uint8_t) raw;

// Send HID report
USBD_HID_SendReport(&hUsbDeviceFS, (uint8_t*) &gameHID, sizeof(struct gameHID_t));

编译项目,对 Nucleo 进行编程或启动调试器:

poYBAGN-z_OAQmfFAAIKqklcJmg567.png
USB 测试屏幕窗口
 

有关问题或提示和技巧,请参阅第 1 部分

第 3 部分:为我的 iRacing 车轮构建一个额外的 Joggle !


声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="//m.obk20.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'用于Nucleo32和CubeMX第2部分的USB HID',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.obk20.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);