#define CLK_FREQ ( 10000 )#define CORE_FREQ ( 168000000 )static void TIM_GPIO_Config( void ){ GPIO_InitTypeDef GPIO_InitStructure; // Enable GP...
分类:
其他好文 时间:
2015-09-10 07:05:00
阅读次数:
347
STM32F4 SPI with DMAA few people have requested code, so I thought I’d post the code showing how I’ve configured my GPIO, timer, SPI, DMA and NVIC mod...
分类:
其他好文 时间:
2015-09-09 06:13:32
阅读次数:
333
How do you generate complementary PWM Outputs?I would like to generate complementary PWM Outputs with adjustable dead time.According to the STM32F401R...
分类:
其他好文 时间:
2015-09-08 09:29:59
阅读次数:
379
一、简介:
不同的STM32系列有不同数量的定时器,针对现在学习的STM32F40x系列总共有14个定时器,针对这14个定时器可以将其分为3类,高级定时器、通用定时器和基本定时器,三种定时器大同小异,下边会针对通用定时器来介绍定时器的原理和应用。对于通用定时器根据位数和计数方式的不同又可以分为3类,相关分类的图表如下:
二、应用:
1、更新:计数器的上溢或下溢。2、事件触...
分类:
其他好文 时间:
2015-08-30 13:00:20
阅读次数:
668
78-WS2812-Library (STM32F4)//--------------------------------------------------------------// File : stm32_ub_ws2812.h//--------------------------...
分类:
其他好文 时间:
2015-08-27 02:10:31
阅读次数:
232
VGA Output from STM32F4 Discovery boardI love the web!There are so many cool projects out there, and some, with a tweak or two,get me where I want to ...
分类:
其他好文 时间:
2015-08-26 21:51:02
阅读次数:
259
One-wire Demo on the STM32F4 Discovery BoardSome of the devs at work were struggling to get their software talking to a Dallas 1-wire device. I rememb...
分类:
其他好文 时间:
2015-08-26 21:47:59
阅读次数:
230
/* * Trigger select mapping for slave timer from master timer. This is * unfortunately not very straightforward; there's no tidy way to do this * alg....
分类:
其他好文 时间:
2015-08-26 01:38:27
阅读次数:
418
一、概述:
USART即通用同步异步收发器,用于灵活的与外部设备全双工数据交换,它支持多种通信传输方式,可以通过小数波特率发生器提供多种波特率。
二、串口IO:
对于STM32F407有6个串口,对于每个串口对应的IO可以从芯片原理图中对应找到,对于其串口1,对应的IO为PA9/PB6端口对应串口1的发送端,PA10/PB7端口对应串口1的接收端。
三、通信参数:...
分类:
其他好文 时间:
2015-08-19 00:45:38
阅读次数:
194
stm32的GPIO的配置模式有好几种,包括:1. 模拟输入;2. 浮空输入;3. 上拉输入;4. 下拉输入;5. 开漏输出;6. 推挽输出;7. 复用开漏输出;8. 复用推挽输出 如图是GPIO的结构原理图: 1.模拟输入 从上图我们可以看到,我觉得模拟输入最重要的一点就是,他不经过输入数据寄存器,所以我们无法通过读取输入数据寄存器来获取模拟输入的值,我觉得这一点也是很好理解的,因为输入数据寄...
分类:
其他好文 时间:
2015-08-18 19:33:42
阅读次数:
276