7209|9

283

帖子

0

TA的资源

纯净的硅(初级)

楼主
 

STM32高手过来帮小弟看哈 [复制链接]

void USART_Configuration()
{
 USART_InitTypeDef USART_InitStructure;
 USART_InitStructure.USART_BaudRate=115200;
 USART_InitStructure.USART_WordLength=USART_WordLength_8b;
 USART_InitStructure.USART_StopBits=USART_StopBits_1;
 USART_InitStructure.USART_Parity=USART_Parity_No;
 USART_InitStructure.USART_Mode=USART_Mode_Rx|USART_Mode_Tx;
 USART_InitStructure.USART_HardwareFlowControl=USART_HardwareFlowControl_None;
 USART_InitStructure.USART_Clock=USART_Clock_Disable;
 USART_InitStructure.USART_CPOL=USART_CPOL_Low;
 USART_InitStructure.USART_CPHA=USART_CPHA_2Edge;
 USART_InitStructure.USART_LastBit=USART_LastBit_Disable;
 USART_Init(USART1,&USART_InitStructure);
 USART_Cmd(USART1,ENABLE);
}
[ 本帖最后由 TopMars 于 2011-8-12 15:04 编辑 ]
此帖出自stm32/stm8论坛

最新回复

小弟这样配的  详情 回复 发表于 2012-3-21 19:40
点赞 关注
 

回复
举报

283

帖子

0

TA的资源

纯净的硅(初级)

沙发
 
STM32的高手  帮我看看  我配置的同步模式  编译怎么老出错呢
main.c(88): error:  #136: struct "" has no field "USART_Clock"
main.c(89): error:  #136: struct "" has no field "USART_CPOL"
main.c(90): error:  #136: struct "" has no field "USART_CPHA"
main.c(91): error:  #136: struct "" has no field "USART_LastBit"
这就是KEIL报的错  是怎么回事呢
此帖出自stm32/stm8论坛
 
 

回复

283

帖子

0

TA的资源

纯净的硅(初级)

板凳
 
坐等大家帮我看看   并指点哈  急呀
此帖出自stm32/stm8论坛
 
 

回复

77

帖子

0

TA的资源

纯净的硅(初级)

4
 

     同学,usart1 配置似乎没你上面说的四个参数,你再仔细看看:

 

void USART1_Configuration(void)
{
 USART_InitTypeDef USART_InitStructure;
 USART_InitStructure.USART_BaudRate            = 115200  ;
 USART_InitStructure.USART_WordLength          = USART_WordLength_8b;
 USART_InitStructure.USART_StopBits            = USART_StopBits_1;
 USART_InitStructure.USART_Parity              = USART_Parity_No ;
 USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
 USART_InitStructure.USART_Mode                = USART_Mode_Rx | USART_Mode_Tx;
 USART_Init(USART1, &USART_InitStructure);
 USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
 USART_Cmd(USART1, ENABLE);    
/* DIR485_L;  */
}

此帖出自stm32/stm8论坛
 
 
 

回复

283

帖子

0

TA的资源

纯净的硅(初级)

5
 
我知道 下面这个我看资料好像是说配置同步模式的时候得配上
我给个图给你看看嘛
此帖出自stm32/stm8论坛
 
 
 

回复

190

帖子

0

TA的资源

五彩晶圆(初级)

6
 
楼主注意usart的初始化函数其实有2个,
一个是:void USART_ClockInit(USART_TypeDef* USARTx, USART_ClockInitTypeDef* USART_ClockInitStruct),其第二个参数类型为指向USART_ClockInitTypeDef类型的结构体的指针,这个结构的成员如下:
typedef struct
{
  u16 USART_Clock;
  u16 USART_CPOL;
  u16 USART_CPHA;
  u16 USART_LastBit;
} USART_ClockInitTypeDef;
里面有你要找的USART_Clock等四个成员
第二个函数是:void USART_Init(USART_TypeDef* USARTx, USART_InitTypeDef* USART_InitStruct)
第二个参数是一个指向USART_InitTypeDef类型结构体的指针,该类型的成员为:

typedef struct
{
  u32 USART_BaudRate;
  u16 USART_WordLength;
  u16 USART_StopBits;
  u16 USART_Parity;
  u16 USART_Mode;
  u16 USART_HardwareFlowControl;  
} USART_InitTypeDef;
所以,楼主是搞混了USART_ClockInitTypeDef和USART_InitTypeDef这两个结构体同义字,好好查看一下吧。

正确的配置方法是:
    /* 定义USART初始化结构体 USART_InitStructure */
    USART_InitTypeDef USART_InitStructure;
    /* 定义USART初始化结构体 USART_ClockInitStructure */
    USART_ClockInitTypeDef  USART_ClockInitStructure;
   
    /*       
        *        波特率为115200bps;
    *        8位数据长度;
    *        1个停止位,无校验;
    *        禁用硬件流控制;
    *        禁止USART时钟;
    *        时钟极性低;
    *        在第2个边沿捕获数据
    *        最后一位数据的时钟脉冲不从 SCLK 输出;
    */
    USART_ClockInitStructure.USART_Clock = USART_Clock_Disable;
    USART_ClockInitStructure.USART_CPOL = USART_CPOL_Low;
    USART_ClockInitStructure.USART_CPHA = USART_CPHA_2Edge;
    USART_ClockInitStructure.USART_LastBit = USART_LastBit_Disable;
    USART_ClockInit(USART1 , &USART_ClockInitStructure);
   
    USART_InitStructure.USART_BaudRate = 9600;
    USART_InitStructure.USART_WordLength = USART_WordLength_8b;
    USART_InitStructure.USART_StopBits = USART_StopBits_1;
    USART_InitStructure.USART_Parity = USART_Parity_No ;
    USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
    USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
    USART_Init(USART1 , &USART_InitStructure);

仅供参考
此帖出自stm32/stm8论坛
 
 
 

回复

283

帖子

0

TA的资源

纯净的硅(初级)

7
 
可是我照你说的那样配置了  编译还是有错呀  我当时去看了库的 也是这么认为的
此帖出自stm32/stm8论坛
 
 
 

回复

127

帖子

0

TA的资源

一粒金砂(高级)

8
 
AFIO难道没使能?
此帖出自stm32/stm8论坛
 
 
 

回复

130

帖子

0

TA的资源

一粒金砂(中级)

9
 

void USART_Configuration(void)//串口初始化

{ USART_InitTypeDef USART_InitStructure; //定义USART_InitTypeDef的结构体变量USART_InitStructure USART_ClockInitTypeDef USART_ClockInitStructure;//

USART_ClockInitStructure.USART_Clock = USART_Clock_Disable;// 时钟低电平活动 USART_ClockInitStructure.USART_CPOL = USART_CPOL_Low; // 时钟输出极性为低电平 USART_ClockInitStructure.USART_CPHA = USART_CPHA_2Edge; // 时钟的第二个时钟沿进行数据捕获 USART_ClockInitStructure.USART_LastBit = USART_LastBit_Disable;//最后一位时钟脉冲不从SCLK输出

USART_ClockInit(USART1, &USART_ClockInitStructure);// USART_InitStructure.USART_BaudRate = 115200;//设置波特率为115200 USART_InitStructure.USART_WordLength = USART_WordLength_8b;//设置数据位宽为8为 USART_InitStructure.USART_StopBits = USART_StopBits_1;//停止位为1位

 USART_InitStructure.USART_Parity = USART_Parity_No ;//无奇偶校验位 USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;///硬件流控制失能 USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;//设置为发射和接收模式

 USART_Init(USART1, &USART_InitStructure);//初始化串口

 USART_Cmd(USART1, ENABLE);//使能串口

[ 本帖最后由 0900820417 于 2012-3-21 19:44 编辑 ]
此帖出自stm32/stm8论坛
 
 
 

回复

130

帖子

0

TA的资源

一粒金砂(中级)

10
 
小弟这样配的
此帖出自stm32/stm8论坛
 
 
 

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

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/8 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表