我用串口精灵发送数据没有问题,但是接收数据没反应。串口接受的时候必须要用中断的,你发送只靠单一的标志位是可以判断的,但是接受的时候,你是一直停留在while里面,我们判断接受是否完成,通过检测是否收到0x0D、0x0A的连续来检测是否结束。当检测到这个结束序列后,就会置位USART_RX_STA的最高位来标记已经会搜到一次数据。之后等待外部函数清空才可以第二次接受。修改:超级终端发送设置,以换行作...
分类:
其他好文 时间:
2015-08-18 19:25:46
阅读次数:
251
The STM32F4xx are able to handle external or internal events in order to wake up the core (WFE).The wakeup event can be generated either by:(I've remo...
分类:
其他好文 时间:
2015-08-12 21:23:52
阅读次数:
3012
STM32F4 External interruptsEach STM32F4 device has 23 external interrupt or event sources.They are split into 2 sections.First interrupt section is fo...
分类:
其他好文 时间:
2015-08-12 12:59:00
阅读次数:
482
Sometimes you have a CAN equipped processor on a low cost board but it has no CAN transceiver chips.Here is a method that can be used to create a smal...
分类:
Web程序 时间:
2015-08-09 13:50:57
阅读次数:
199
#define GPIO_AF0_MCO // MCO (MCO1 and MCO2) Alternate Function mapping#define GPIO_AF0_RTC_50Hz // RTC_50Hz Alternate F...
分类:
移动开发 时间:
2015-08-09 01:42:54
阅读次数:
1035
STM32F4: Generating parallel signals with the FSMCThe goal:The memory controller can be used to generate a "generic" 16-bit parallel data stream with ...
分类:
其他好文 时间:
2015-08-08 14:53:56
阅读次数:
356
STM32F4 USB Composite CDC + MSCI'm in the process of building a USB composite CDC + MSC device on the STM32F4 Discovery board but am having trouble ge...
分类:
其他好文 时间:
2015-08-08 06:27:31
阅读次数:
979
NVIC中断优先级
一、简介:
CM4内核可以支持256个中断,包括16个内核中断和240个外部中断,256级的可编程中断设置。对于STM32F4没有用到CM4内核的所有东西,只是用到了一部分,对于STM32F40和41系列共有92个中断,其中有10个内核中断和82个可屏蔽中断,常用的为82个可屏蔽中断。
二、相关寄存器:
ISER[8]—中断使能寄存器组,...
分类:
其他好文 时间:
2015-08-08 00:07:07
阅读次数:
195
测试环境:STM32F407168MHz,IAR7.4,优化级别low测试方法:第一个信号是TIM比较器的输出,同时产生比较器中断。中断服务程序里第一句就立即拉高一个GPIO,示波器查两个信号的延迟大致了解中断响应速度。中断向量表在Flash,中断服务程序在Flash,延迟约155ns:中断向量表在内..
分类:
其他好文 时间:
2015-07-28 06:50:32
阅读次数:
367
看到很多管脚都可以配置成EVENTOUT,刚好有个管脚要想要输出一个高电平脉冲,测试了一下:环境:STM32F407,IAR7.4,STM32CubeF4GPIO配置代码:GPIO_InitStruct.Pin=GPIO_PIN_10;GPIO_InitStruct.Mode=GPIO_MODE_AF_PP;GPIO_InitStruct.Pull=GPIO_PULLDOWN;GPIO_InitStruct.Speed..
分类:
Web程序 时间:
2015-07-28 06:49:49
阅读次数:
331