上一页 1 ··· 6 7 8 9 10 11 下一页

2020年5月21日

摘要: #include <stdio.h>#include <math.h> #include <stdlib.h>#include <string.h> #define DATALEN 300 struct dataCollection{ float X_1; float X_2; float X_3; 阅读全文
posted @ 2020-05-21 13:36 Skyge 阅读(195) 评论(1) 推荐(0) 编辑
 

2020年5月17日

摘要: 通过联合体的特性测试大小端问题: 阅读全文
posted @ 2020-05-17 14:15 Skyge 阅读(346) 评论(0) 推荐(0) 编辑
 

2020年5月10日

摘要: /////////////////////////////////////////////////////////////////////////////// 阅读全文
posted @ 2020-05-10 21:15 Skyge 阅读(373) 评论(0) 推荐(0) 编辑
 

2020年1月3日

摘要: STM32CubeMX软件下载和安装:http://www.stmicroelectronics.com.cn/ 首页搜索STM32CubeMX即可找到下载页 MDK5最新版本软件下载:http://www2.keil.com/mdk5MDK的pack下载路径:https://www.keil.co 阅读全文
posted @ 2020-01-03 14:47 Skyge 阅读(175) 评论(0) 推荐(0) 编辑
 

2019年12月30日

摘要: 无论是头文件还是在.c文件,哪个文件需要包含就在哪个文件里面包含。 阅读全文
posted @ 2019-12-30 13:08 Skyge 阅读(87) 评论(0) 推荐(0) 编辑
 
摘要: 指的是输出。非输入 阅读全文
posted @ 2019-12-30 11:10 Skyge 阅读(299) 评论(0) 推荐(0) 编辑
 

2019年12月28日

摘要: 选择“查看”然后自动适应客户机 阅读全文
posted @ 2019-12-28 23:26 Skyge 阅读(776) 评论(0) 推荐(0) 编辑
 

2019年12月27日

摘要: //错误点:led_gpio_rcc时钟函数配错了 RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC,ENABLE); //main函数 int main(void) { led_Init(); systickInit(1000); //1秒 while(1) 阅读全文
posted @ 2019-12-27 15:59 Skyge 阅读(117) 评论(0) 推荐(0) 编辑
 

2019年12月24日

摘要: 此目录主要作为挂载点使用,通常包括系统引导后被挂载的文件系统的挂载点。如挂载到windows下的某个分区。 阅读全文
posted @ 2019-12-24 10:50 Skyge 阅读(1529) 评论(0) 推荐(0) 编辑
 

2019年11月30日

摘要: /////////////////////////////////定义节点结构体 struct node{ int data; struct node *pnext;}; ////////////////////////////////////main函数 int main(){ struct no 阅读全文
posted @ 2019-11-30 16:21 Skyge 阅读(277) 评论(2) 推荐(0) 编辑
 
上一页 1 ··· 6 7 8 9 10 11 下一页