stm32学习
咔咔啦
我会让你知道什么是残忍!未及时回复请私信.
展开
-
stm32类型定义详解uint8_t / uint16_t / uint32_t /ui
uint8_t / uint16_t / uint32_t /uint64_t 是什么数据类型这些数据类型是 C99 中定义的,具体定义在:/usr/include/stdint.h ISO C99: 7.18 Integer types #ifndef __int8_t_defined # define __int8_t_defined原创 2017-04-13 14:59:46 · 26238 阅读 · 0 评论 -
STM32点亮LED程序
#include"led.h"/* * @brief None program. * @param None * @retval None * */void LED_GPIO_Config(void){ GPIO_InitTypeDef GPIO_InitStructure; RCC_APB2PeriphClockCmd...原创 2019-03-31 14:42:51 · 2498 阅读 · 0 评论 -
STM32库函数流水灯学习
#include"stm32f10x.h"#include"led.h"//主函数int main (void){ uint8_t endValue = 0; uint8_t count = 0; endValue = 0x01; LED_GPIO_Config(); while(1) { /****左移16次****/ for(count=0; c...原创 2019-04-02 00:03:42 · 1803 阅读 · 0 评论 -
Keil v5 使用STLINK 下载后直接运行, 不需要复位,不需要拔插接口.
原创 2019-05-12 00:35:30 · 3309 阅读 · 0 评论