野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 20514|回复: 5

新人请教 流水灯程序 jtag 下载没有反映

[复制链接]
发表于 2014-8-12 20:21:23 | 显示全部楼层 |阅读模式
#include"stm32f10x_lib.h"
#include<stdio.h>
函数声明
void Delay_MS(u16 dly);
void RCC_Configuration(void);
void GPIO_Configuration(void);

主程序
int main(void)
{
RCC_Configuration();
GPIO_Configuration();
while(1)
{
  GPIO_SetBits(GPIOB,GPIO_Pin_0);
  Delay_MS(500);
  GPIO_ResetBits(GPIOB,GPIO_Pin_0);
  Delay_MS(500);
  GPIO_SetBits(GPIOC,GPIO_Pin_3);
  Delay_MS(500);
  GPIO_ResetBits(GPIOC,GPIO_Pin_3);
  Delay_MS(500);
  GPIO_SetBits(GPIOC,GPIO_Pin_4);
  Delay_MS(500);
  GPIO_ResetBits(GPIOC,GPIO_Pin_4);  
  }
}
GPIO口也设置了
void GPIO_Configuration()
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOB|RCC_APB2Periph_GPIOC, ENABLE);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_0;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
GPIO_Init(GPIOB,&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_3|GPIO_Pin_4;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
GPIO_Init(GPIOC,&GPIO_InitStructure);

  GPIO_SetBits(GPIOB, GPIO_Pin_0);
  GPIO_SetBits(GPIOC, GPIO_Pin_4|GPIO_Pin_3);  
}
还有时钟 延时函数都写了   
请大神帮我看看有什么问题 野火的程序不太看的懂 所以也对比不出来  有点长 希望见谅
回复

使用道具 举报

发表于 2014-8-12 20:23:13 | 显示全部楼层
看不出问题~~
回复 支持 反对

使用道具 举报

发表于 2014-8-13 08:47:00 | 显示全部楼层
程序简单,LZ可以DEBUG跟随一下就知道问题了.
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-8-13 16:19:40 | 显示全部楼层
刀_口 发表于 2014-8-13 08:47
程序简单,LZ可以DEBUG跟随一下就知道问题了.

怎么 DUBUG  可以详细一点吗
回复 支持 反对

使用道具 举报

发表于 2014-8-13 17:21:28 | 显示全部楼层
MIKLE 发表于 2014-8-13 16:19
怎么 DUBUG  可以详细一点吗

在线调试,设置断点
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-8-14 20:23:32 | 显示全部楼层
强烈支持,非常感谢哥们
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-28 14:52 , Processed in 0.030865 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表