×

使用RT-Thread Studio通过STM32F469 Disco控制ESP32

消耗积分:0 | 格式:zip | 大小:0.27 MB | 2023-02-06

laisvl

分享资料个

描述

背景

早在 TED 演讲流行之前,就有一个广播节目讲述我们的文化如何由人类创造力形成的故事。那个广播节目,我们聪明才智的引擎,已经在我之前的一个项目中出现过,如果指控不合法,你 m。AWS。教育工具包我们想要制作一款可以播放具有更多屏幕空间的剧集的设备,以允许用户控制,为此我们使用了 STM32F469 DISCOVERY 板。我们不只是想要随机和向前/向后导航,我们希望能够跳转到特定剧集并查看标题和描述。此外,在这个项目中我们没有使用 AWS,所以我们必须弄清楚如何让 ESP32 加载大页面而不会崩溃。最后,威廉希尔官方网站 板必须通过 UART 进行通信。

挑战

20220711_153034_82DaNzqIs1.jpg?auto=compress%2Cformat&w=740&h=555&fit=max
 

我们的邮递员将我的滑板用作加高座椅。奇迹般地,板仍然是一体的。我几周前订购的 I2S 放大器尚未交付。出于这个原因,我们使用了Skydive Auto Reminder - Doing More With Less中的代码,在没有 I2S 板的情况下生成质量较低的音频。

板级支持包 (BSP)

我们首先下载并解压https://github.com/RT-Thread/rt-thread/archive/refs/heads/master.zip以获取最新的 BSP。根据用户手册,我们在该板上有四个 USART 端口和四个 UART 端口,但是默认情况下仅启用 USART3。使用STM32 CubeMX,我们打开%userprofile%\Downloads\rt-thread-master\rt-thread-master\bsp\stm32\stm32f469-st-disco\board\CubeMX_Config\CubeMX_Config.ioc

image_tAvWWdWakd.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

单击 Continue 后,我们在左侧窗格中展开连接并单击 USART6。

image_MxuH4y31f8.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

我们在模式下拉菜单中用异步替换了禁用。然后我们单击右上角的生成代码并关闭应用程序。

image_cDQQbvR1oC.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

我们找到了 Kconfig(向上一个文件夹)并复制了 UART3 文本,然后替换为 UART6。现在,它看起来像这样。

image_nFmpfJZm4Q.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

保存此文件后,BSP 就可以使用了。

RT-线程工作室

本教程用一分钟时间展示了如何导入我们刚刚修改的 BSP。

 

这就是我们导入的样子。

image_trIpqYXFuw.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

我们从左侧窗格中打开 RT-Thread 设置,然后单击右侧的人字形。

image_K7s110qSbx.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

我们来到此处为 LCD 启用 LVGL,它将自动触发所有需要的切换。

image_A7KtijgmOW.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

我们还需要打开刚刚启用的 UART6。

image_AKg1p3Xlnd.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

我们不得不将 Rx 缓冲区大小从 64 增加到 1024。

image_OF2vNiZmIU.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

我们删除了应用程序文件夹中的所有文件,然后从 Github 复制了我们的文件。

image_O8yZvqLVcb.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

为了在代码下载后允许自动重置,我们需要进行此更改。

image_8L5JmhzzcD.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

请注意,本教程使用的是 LVGL v8.3.1,如果您必须在他们的网站上查找内容,请确保您查看的是正确的版本。

image_qYq7QjzPEX.png?auto=compress%2Cformat&w=740&h=555&fit=max
 

视觉工作室代码

我们使用mrfaptastic/WiFiConnect Lite将 ESP32 连接到 Wi-Fi,无需硬编码凭据。我们还使用了 earlephilhower/ESP8266Audio让开发板将 mp3 文件转换为音频。我们的板子太旧了,所以我们不得不注释掉 AudioOutputI2S.cpp 和 AudioOutputSPDIF.cpp 中相同的三行。

.mclk_multiple = I2S_MCLK_MULTIPLE_DEFAULT, // Unused
.bits_per_chan = I2S_BITS_PER_CHAN_DEFAULT // Use bits per sample
.mck_io_num = 0, // unused

在设置中,我们连接到 Wi-Fi 并首次访问网站以获取最新的剧集编号,用于生成初始播放的随机数。在循环中,我们转到剧集页面以检索标题和描述,然后开始播放音频。如果用户发送一个不同剧集的请求,循环将被中断并播放新剧集。

硬件

我们使用标准 UART 连接来使开发板进行通信。一块板的 Tx 连接到另一块板的 Rx,反之亦然。我们正在使用 USB 数据线为 ESP32 供电,并通过 ESP32 为 STM32F469 DISCOVERY 供电。STM32F469 DISCOVERY 的 NRST 必须连接到 ESP32 的 EN 以保持威廉希尔官方网站 板同步。最后,音频输出来自 D22,我们不得不使用 0.01 uf (103K) 陶瓷圆盘电容器来消除一些噪音。

 

 


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

评论(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:'使用RT-Thread Studio通过STM32F469 Disco控制ESP32',//标题 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);