hotsauce1861 发表于 2018-10-31 20:17

MM32F031开发板评测 001 之 GPIO的使用点亮板载LED

<div class='showpostmsg'>克服诸多困难之后,暂时先使用一下GPIO,不太熟悉,还好官方提供比较完善的历程,
参照例子简单修改了一下,GPIOA8输入低电平,可以点亮板载的LED灯D2。

#include "HAL_gpio.h"

#define LED_OFF()                do {GPIO_SetBits(GPIOA,GPIO_Pin_8);}while(0)
#define LED_ON()                do {GPIO_ResetBits(GPIOA,GPIO_Pin_8);}while(0)
#define LED_TOGGLE()do {(GPIO_ReadOutputDataBit(GPIOA,GPIO_Pin_8)) \
                                                                                ?(GPIO_ResetBits(GPIOA,GPIO_Pin_8)) \
                                                                                :(GPIO_SetBits(GPIOA,GPIO_Pin_8));} while(0)

int main(void)   
{
    GPIO_InitTypeDefGPIO_InitStructure;
   
    RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE);
    GPIO_InitStructure.GPIO_Pin=GPIO_Pin_8;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
    GPIO_Init(GPIOA, &GPIO_InitStructure);
       
                LED_ON();
    while(1)
    {

    }
}





遇到一个uart.c中的一个警告,IDE将其作为错误处理了,当然可以消灭一下这个问题



因为缺少返回类型,编译器默认认为 返回类型为 int,所以在这里加上一个返回类型即可,最终解决改为
void _sys_exit(int x)
{
    x = x;
}




此内容由EEWORLD论坛网友hotsauce1861原创,如需转载或用于商业用途需征得作者同意并注明出处

暂时先到这里

</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>

zxopenljx 发表于 2021-6-11 17:49

<p>谢谢分享</p>
页: [1]
查看完整版本: MM32F031开发板评测 001 之 GPIO的使用点亮板载LED