你的浏览器版本过低,可能导致网站不能正常访问!
为了你能正常使用网站功能,请使用这些浏览器。

请问怎样用STM32做一个流水灯实验程序怎么写?谢谢!【悬赏问答】

[复制链接]
林子的海角 提问时间:2012-8-6 21:06 /
阅读主题, 点击返回1楼
收藏 评论20 发布时间:2012-8-6 21:06
20个回答
猪大 回答时间:2012-8-13 10:56:36

RE:请问怎样用STM32做一个流水灯实验程序怎么写?谢谢!【悬赏问答】

先看看GPIO,然后看定时器,接着是外中断,建议先接触51单片机,这样上手快。
青檬 回答时间:2012-8-14 09:19:15

回复:请问怎样用STM32做一个流水灯实验程序怎么写?谢谢!【悬赏问答】

你需要了解 GPIO口的使用及EXTI,看下例程,相信你能搞定!
瘦猪呆兔 回答时间:2012-8-14 17:41:35

RE:请问怎样用STM32做一个流水灯实验程序怎么写?谢谢!【悬赏问答】

#include "stm32f10x.h"
#include "GLCD.h"
#include "USART.h"
void GPIO_Configuration(void)
{
        GPIO_InitTypeDef GPIO_InitStructure;
       
        /* Configure IO connected to LD1, LD2, LD3 and LD4 leds *********************/       
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_7;
          GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
          GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
          GPIO_Init(GPIOD, &GPIO_InitStructure);
           /* Configure USART1 Tx (PA.09) as alternate function push-pull */
          GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
          GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
          GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
          GPIO_Init(GPIOA, &GPIO_InitStructure);
   
          /* Configure USART1 Rx (PA.10) as input floating */
          GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
          GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
          GPIO_Init(GPIOA, &GPIO_InitStructure);
}
//系统中断管理
void NVIC_Configuration(void)
{
          /* Configure the NVIC Preemption Priority Bits */  
          NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0);
        #ifdef  VECT_TAB_RAM  
          /* Set the Vector Table base location at 0x20000000 */
          NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0);
        #else  /* VECT_TAB_FLASH  */
          /* Set the Vector Table base location at 0x08000000 */
          NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0);   
        #endif
}
//配置系统时钟,使能各外设时钟
void RCC_Configuration(void)
{
        SystemInit();       
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA
                           |RCC_APB2Periph_GPIOB | RCC_APB2Periph_GPIOC
                           |RCC_APB2Periph_GPIOD | RCC_APB2Periph_GPIOE
                                                   |RCC_APB2Periph_ADC1  | RCC_APB2Periph_AFIO
                           |RCC_APB2Periph_SPI1, ENABLE );
  // RCC_APB2PeriphClockCmd(RCC_APB2Periph_ALL ,ENABLE );
     RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM4
                           |RCC_APB1Periph_USART3|RCC_APB1Periph_TIM2                                  
                           , ENABLE );
         RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1, ENABLE);
}
void InitDis(void)
{
   /* LCD Module init */
   GLCD_init();
   GLCD_clear(White);
   GLCD_setTextColor(Blue);
   GLCD_displayStringLn(Line1, "     GoldBull");
   GLCD_displayStringLn(Line2, "   GPIO example");
   GLCD_setTextColor(Red);
}
//配置所有外设
void Init_All_Periph(void)
{
        RCC_Configuration();       
        InitDis();
//        GLCD_Test();
        GPIO_Configuration();
        NVIC_Configuration();
        USART1_Configuration();
        USART1Write((u8*)"    GoldBull  ADC_example ",sizeof("    GoldBull  GPIO_example "));
}
void Delay(vu32 nCount)
{
  for(; nCount != 0; nCount--);
}
int main(void)
{  
        Init_All_Periph();
        while(1)
          {
                /* Turn on LD1 */
            GPIO_SetBits(GPIOD, GPIO_Pin_2);
            /* Insert delay */
            Delay(0xAFFFF);
            /* Turn on LD2 and LD3 */
            GPIO_SetBits(GPIOD, GPIO_Pin_3 | GPIO_Pin_4);
            /* Turn off LD1 */
            GPIO_ResetBits(GPIOD, GPIO_Pin_2);
            /* Insert delay */
            Delay(0xAFFFF);
            /* Turn on LD4 */
            GPIO_SetBits(GPIOD, GPIO_Pin_7);
            /* Turn off LD2 and LD3 */
            GPIO_ResetBits(GPIOD, GPIO_Pin_4 | GPIO_Pin_3);
            /* Insert delay */
            Delay(0xAFFFF);
            /* Turn off LD4 */
            GPIO_ResetBits(GPIOD, GPIO_Pin_7);       
          }
}
这个很详细了还不会,俺就木有办法了
cmz871627 回答时间:2012-8-15 15:40:09

RE:请问怎样用STM32做一个流水灯实验程序怎么写?谢谢!【悬赏问答】

楼上的都已经说了  多看看
林子的海角 回答时间:2012-8-15 21:24:59

回复:请问怎样用STM32做一个流水灯实验程序怎么写?谢谢!【悬赏问答】

回复第 18 楼 于2012-08-14 17:41:35发表:
#include "stm32f10x.h"
#include "GLCD.h"
#include "USART.h"
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;

/* Configure IO connected to LD1, LD2, LD3 and LD4 leds *********************/
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_7;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOD, &GPIO_InitStructure);
/* Configure USART1 Tx (PA.09) as alternate function push-pull */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);

/* Configure USART1 Rx (PA.10) as input floating */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
}
//系统中断管理
void NVIC_Configuration(void)
{
/* Configure the NVIC Preemption Priority Bits */
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0);
#ifdef VECT_TAB_RAM
/* Set the Vector Table base location at 0x20000000 */
NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0);
#else /* VECT_TAB_FLASH */
/* Set the Vector Table base location at 0x08000000 */
NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0);
#endif
}
//配置系统时钟,使能各外设时钟
void RCC_Configuration(void)
{
SystemInit();
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA
|RCC_APB2Periph_GPIOB | RCC_APB2Periph_GPIOC
|RCC_APB2Periph_GPIOD | RCC_APB2Periph_GPIOE
|RCC_APB2Periph_ADC1 | RCC_APB2Periph_AFIO
|RCC_APB2Periph_SPI1, ENABLE );
// RCC_APB2PeriphClockCmd(RCC_APB2Periph_ALL ,ENABLE );
RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM4
|RCC_APB1Periph_USART3|RCC_APB1Periph_TIM2
, ENABLE );
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1, ENABLE);
}
void InitDis(void)
{
/* LCD Module init */
GLCD_init();
GLCD_clear(White);
GLCD_setTextColor(Blue);
GLCD_displayStringLn(Line1, " GoldBull");
GLCD_displayStringLn(Line2, " GPIO example");
GLCD_setTextColor(Red);
}
//配置所有外设
void Init_All_Periph(void)
{
RCC_Configuration();
InitDis();
// GLCD_Test();
GPIO_Configuration();
NVIC_Configuration();
USART1_Configuration();
USART1Write((u8*)" GoldBull ADC_example ",sizeof(" GoldBull GPIO_example "));
}
void Delay(vu32 nCount)
{
for(; nCount != 0; nCount--);
}
int main(void)
{
Init_All_Periph();
while(1)
{
/* Turn on LD1 */
GPIO_SetBits(GPIOD, GPIO_Pin_2);
/* Insert delay */
Delay(0xAFFFF);
/* Turn on LD2 and LD3 */
GPIO_SetBits(GPIOD, GPIO_Pin_3 | GPIO_Pin_4);
/* Turn off LD1 */
GPIO_ResetBits(GPIOD, GPIO_Pin_2);
/* Insert delay */
Delay(0xAFFFF);
/* Turn on LD4 */
GPIO_SetBits(GPIOD, GPIO_Pin_7);
/* Turn off LD2 and LD3 */
GPIO_ResetBits(GPIOD, GPIO_Pin_4 | GPIO_Pin_3);
/* Insert delay */
Delay(0xAFFFF);
/* Turn off LD4 */
GPIO_ResetBits(GPIOD, GPIO_Pin_7);
}
}
这个很详细了还不会,俺就木有办法了 
谢谢哈  真的很谢谢呢 我会努力学习的呢 谢谢你哈
cjq_enjoy-15073 回答时间:2012-8-28 12:03:14

RE:请问怎样用STM32做一个流水灯实验程序怎么写?谢谢!【悬赏问答】

上个程序代码参照一下就可以 了

LED闪烁.rar

下载

615.39 KB, 下载次数: 7

12

所属标签

相似问题

关于意法半导体
我们是谁
投资者关系
意法半导体可持续发展举措
创新与技术
招聘信息
联系我们
联系ST分支机构
寻找销售人员和分销渠道
社区
媒体中心
活动与培训
隐私策略
隐私策略
Cookies管理
行使您的权利
关注我们
st-img 微信公众号
st-img 手机版