摘要: using System; using System.Globalization; using System.IO; using System.Text; using System.Windows.Forms; namespace app.Lib { public enum Level { Debu 阅读全文
posted @ 2019-04-22 18:16 一人之下冯宝宝 阅读(757) 评论(0) 推荐(0) 编辑
摘要: #include "TgcConfig.h"#include "my_usb.h" /******************************************************************************** Function Name : TgcAdcInit 阅读全文
posted @ 2019-04-17 18:15 一人之下冯宝宝 阅读(334) 评论(0) 推荐(0) 编辑
摘要: #include "keyboard.h"#include "my_usb.h"#include "gpio.h"#include "stdio.h"#include "sys.h"#include "LedControl.h"#include "usart.h" /**************** 阅读全文
posted @ 2019-04-10 20:33 一人之下冯宝宝 阅读(332) 评论(0) 推荐(0) 编辑
摘要: /************************************************************* Function Name : Uart1_Send_Byte* Description : ´®¿Ú1·¢ËÍ×Ö½ÚÊý¾Ý* Input : ·¢ËÍ×Ö½Ú* Ret 阅读全文
posted @ 2019-04-10 16:25 一人之下冯宝宝 阅读(711) 评论(1) 推荐(0) 编辑
摘要: SPI 1.标准SPI通信 IO口模拟时序2.STM32F411 SPI控制器原理3.SPI模块的配置 寄存器 1.标准SPI通信 SPI:串行外部设备接口 通信接口 特点:高速同步串行全双工通信 40M 硬件连线: 4线制 SCL :时钟线 由主机发出 MOSI:主机输出从机输入 MISO:主机输 阅读全文
posted @ 2019-03-15 23:07 一人之下冯宝宝 阅读(639) 评论(0) 推荐(0) 编辑
摘要: Keyboard.c #include "keyboard.h"#include "my_usb.h"#include "gpio.h"#include "stdio.h"#include "sys.h"#include "LedControl.h" int ScanCodeToMakeCode(i 阅读全文
posted @ 2019-03-15 15:56 一人之下冯宝宝 阅读(716) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/burgesskzg/article/details/77100453 阅读全文
posted @ 2019-03-12 21:15 一人之下冯宝宝 阅读(704) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/errorhai/article/details/85333914 阅读全文
posted @ 2019-03-12 17:27 一人之下冯宝宝 阅读(320) 评论(0) 推荐(0) 编辑
摘要: void selectsort(int *a,int len) { int i,j; int temp; for(i=0;i<len-1;i++) { for(j=i+1;j<len;j++) { if(a[i]>a[j]) { temp=a[i]; a[i]=a[j]; a[j]=temp; } 阅读全文
posted @ 2019-03-11 21:33 一人之下冯宝宝 阅读(150) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> void output(int *a,int len); void InsertSort(int *array, int len); int main() { int a[6]={1,5,2,9,4,3}; InsertS 阅读全文
posted @ 2019-03-10 22:34 一人之下冯宝宝 阅读(113) 评论(0) 推荐(0) 编辑