找回密碼
 立即注冊

QQ登錄

只需一步,快速開始

搜索
查看: 3702|回復(fù): 1
打印 上一主題 下一主題
收起左側(cè)

stm32串口調(diào)試程序

[復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
樓主
ID:86860 發(fā)表于 2015-7-26 02:20 | 只看該作者 回帖獎勵 |倒序?yàn)g覽 |閱讀模式
#include "stm32f10x.h"
//#include"stm32f10x_lib.h"

void Delay(unsigned intx);
void UART_Init(void);

int main(void)
{

  
  
  while(1)
  {
   Delay(300000);
   UART_Init();  //初始化串口
   USART_SendData(USART1,0x1A);  //從串口發(fā)送數(shù)據(jù)到計(jì)算機(jī)
  while(USART_GetFlagStatus(USART1,USART_FLAG_TXE)==RESET);//RESET是0,等待發(fā)送完畢
  //if(USART_GetFlagStatus(USART1,USART_FLAG_TC)==RESET)
   GPIO_SetBits(GPIOC, GPIO_Pin_6 );  //發(fā)送完畢則點(diǎn)亮D1二極管

  }
}


void UART_Init(void)
{
SystemInit();//配置系統(tǒng)時鐘
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOB| RCC_APB2Periph_GPIOC | RCC_APB2Periph_GPIOD |RCC_APB2Periph_GPIOE |RCC_APB2Periph_USART1,ENABLE);//IO口使能設(shè)置
  GPIO_InitTypeDefGPIO_InitStructure;   //定義I/O口結(jié)構(gòu)體
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;   
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_Init(GPIOA,&GPIO_InitStructure);
  
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7;
  GPIO_Init(GPIOC,&GPIO_InitStructure);
  
USART_InitTypeDef USART_InitStructure;//定義串口結(jié)構(gòu)體
//RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);//使能串口1
USART_InitStructure.USART_BaudRate=38400;
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_Cmd(USART1,ENABLE);
}





void Delay(unsigned intx)
{
unsigned int t;
t=x;
while(t--);
}

分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏 分享淘帖 頂 踩
回復(fù)

使用道具 舉報

沙發(fā)
ID:72995 發(fā)表于 2015-9-20 16:15 | 只看該作者
樓主,有用STM接收數(shù)據(jù)的程序嗎?
回復(fù)

使用道具 舉報

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規(guī)則

手機(jī)版|小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術(shù)交流QQ群281945664

Powered by 單片機(jī)教程網(wǎng)

快速回復(fù) 返回頂部 返回列表