[测评nucleo开发板f413zh]开箱与点灯]
<div class='showpostmsg'><p> 首先感谢EEWORLD和ST的测评机会。一直在关注EEWORLD,并且也一直在使用ST的单片机。无意中看到nucleo开发板的测评申请链接,就填写并提交了自己的任务。几天后,收到了申请测评成功的邮件,便开始紧张的等待。</p><p><strong>一、准备</strong></p>
<p> 在等快递的日子,便是安装相应的开发环境,查询下载相关的资料,主要是原理图。我选择的开发工具是STM32CubeIDE,在官网<a href="https://www.stmcu.com.cn/Designresource/list/STM32%20MCU/evaluation_development_board/evaluation_development_board">www.stmcu.com.cn</a>下载相应的资料,得注册一下账号。</p>
<p><strong>二、开箱</strong></p>
<p> 打开快递,映入眼帘的是一个白色的开发板,颜值还是很在线的。</p>
<p></p>
<p><strong>三、上电</strong></p>
<p> 使用安卓数据线A口的数据线,连接开发板和电脑,可以看到led2和led3交替点亮。在电脑上可以看到虚拟串口,也可以看到文件系统。</p>
<p></p>
<p></p>
<p></p>
<p><strong>四、点灯</strong></p>
<p> 就如同写一个Hello World一样,新建了一个工程,然后设置了led的引脚为PB7。生成相应ide的代码。在生成的代码中增加以下几行,然后升级STlink的驱动,使用开发板自带的STlink即可下载程序。</p>
<pre>
<code class="language-cpp">while (1)
{
/* USER CODE END WHILE */
/* USER CODE BEGIN 3 */
HAL_GPIO_TogglePin(led2_GPIO_Port, led2_Pin);
HAL_Delay(2000);
}</code></pre>
<p><br />
</p>
<p></p>
</div><script> var loginstr = '<div class="locked">查看本帖全部内容,请<a href="javascript:;" style="color:#e60000" class="loginf">登录</a>或者<a href="https://bbs.eeworld.com.cn/member.php?mod=register_eeworld.php&action=wechat" style="color:#e60000" target="_blank">注册</a></div>';
if(parseInt(discuz_uid)==0){
(function($){
var postHeight = getTextHeight(400);
$(".showpostmsg").html($(".showpostmsg").html());
$(".showpostmsg").after(loginstr);
$(".showpostmsg").css({height:postHeight,overflow:"hidden"});
})(jQuery);
} </script><script type="text/javascript">(function(d,c){var a=d.createElement("script"),m=d.getElementsByTagName("script"),eewurl="//counter.eeworld.com.cn/pv/count/";a.src=eewurl+c;m.parentNode.insertBefore(a,m)})(document,523)</script> <p>st的开发板,是学习、开发的好工具,恭喜楼主中奖,希望分享一些不一样的文章给大家!</p>
lugl4313820 发表于 2023-9-10 10:36
st的开发板,是学习、开发的好工具,恭喜楼主中奖,希望分享一些不一样的文章给大家!
<p>好的,谢谢提醒。昨天一直在看数据手册,这两天再输出一下文档,一起学习交流。</p>
机器人爱好者1991 发表于 2023-9-11 09:15
好的,谢谢提醒。昨天一直在看数据手册,这两天再输出一下文档,一起学习交流。
<p>加油!</p>
页:
[1]