STM32嵌入式开发
文章平均质量分 58
wangbobit
这个作者很懒,什么都没留下…
展开
-
stm32-led-串口-PWM
因为项目需要,学习了一下stm32的GPIO,串口,PWM,中断部分,在这里做个小结, 共同学习,所有程序均经过实际测试,输出正确。将GPIO,串口,PWM(定时器)的配置程序粘贴如下1、使能外设的时钟:APB1ENR,APB2ENR2、配置寄存器或者说是控制寄存器。在配置stm32外设时,任何时候都要先使能该外设的时钟!而每个控制寄存器,很有可能包括了,1模式寄存器,2使能寄原创 2015-07-04 16:26:21 · 1680 阅读 · 0 评论 -
STM32接收串口数据-输出PWM
#include #include "sys.h"#include "usart.h" #include "delay.h" #include "led.h" #include "key.h"#include "exti.h"#include "wdg.h"#include "timer.h" #include "string.h" //Mini STM32开发板范例代码原创 2015-07-04 11:38:10 · 7516 阅读 · 1 评论 -
STM32-PWM波-控制舵机
寄存器配置stm32设备1、使能外设的时钟:APB1ENR,APB2ENR2、配置寄存器或者说是控制寄存器。在配置stm32外设时,任何时候都要先使能该外设的时钟!而每个控制寄存器,很有可能包括了,1模式寄存器,2使能寄存器,3才可能是我们认为的数据寄存器或者内容寄存器。3、使能外设。即使配置好了,没有使能外设,则外设永远不会工作,这一点比较容易遗忘。寄存器配置,请查看ht原创 2015-07-04 13:44:04 · 20921 阅读 · 3 评论 -
Keil编译出现“Error: L6406W: No space in execution regions with .ANY selector match Section"的解决办法
参考网址http://blog.csdn.net/zxzxzxzx2121/article/details/43796297情景:在编译Keil工程时,compile编译能够通过,但在linking过程中,出现一大串”Error: L6406W: No space in execution regions with .ANY selector match Section“的错误。转载 2017-09-11 18:53:14 · 1013 阅读 · 0 评论 -
Symbol_stdout multiply defined (by stdio_stream.o and usart.o )
Symbol_stdout multiply defined (by stdio_stream.o and usart.o )这个问题解决方法,把头文件删掉,也不用std::cout等原创 2017-09-11 18:56:13 · 8232 阅读 · 4 评论 -
使用CC3D飞控的一些参考
CC3D是F1飞控,早期的穿越飞控,现在可以烧录openpilot/librepilot或者cleanflight/betaflight的固件,烧录参考网址如下1. http://www.5imx.com/portal.php?mod=view&aid=6242. http://www.modouwo.com/APruduct/PCK_57_32_94520.html3. http://w...原创 2018-05-06 17:16:42 · 16391 阅读 · 0 评论