你的浏览器版本过低,可能导致网站不能正常访问!为了你能正常使用网站功能,请使用这些浏览器。
举报
NUCLEO-F030R8.zip
2015-11-12 11:05 上传
点击文件名下载附件
4.26 MB, 下载次数: 4, 下载积分: ST金币 -1
小例程
安 发表于 2015-11-12 09:21 串口基本的IO、时钟都没有进行配置。建议参考例程。
呦、小魔 发表于 2015-11-12 10:10 只有那么多吗?
NUCLEO-F030R8.zip
2015-11-12 11:05 上传
点击文件名下载附件
下载积分: ST金币 -14.26 MB, 下载次数: 4, 下载积分: ST金币 -1
小例程
刚开始接触,大哥能不能修改一下给我学习一下,附件有例程,谢谢
我加了别的还是不行,不通
static void USART_Config(void)
{
USART_InitTypeDef USART_InitStructure;
/* USARTx configured as follow:
- BaudRate = 115200 baud
- Word Length = 8 Bits
- Stop Bit = 1 Stop Bit
- Parity = No Parity
- Hardware flow control disabled (RTS and CTS signals)
- Receive and transmit enabled
*/
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(USART2, &USART_InitStructure);
}