itloverhpu

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2013年6月1日

摘要: code vesion control 阅读全文
posted @ 2013-06-01 23:54 itloverhpu 阅读(185) 评论(0) 推荐(0) 编辑

摘要: 几款代码比较工具 阅读全文
posted @ 2013-06-01 23:42 itloverhpu 阅读(419) 评论(0) 推荐(0) 编辑

摘要: SouceInsight学习 阅读全文
posted @ 2013-06-01 23:34 itloverhpu 阅读(215) 评论(0) 推荐(0) 编辑

摘要: 文本编辑工具 阅读全文
posted @ 2013-06-01 23:29 itloverhpu 阅读(530) 评论(0) 推荐(0) 编辑

摘要: C语言 库函数 阅读全文
posted @ 2013-06-01 18:28 itloverhpu 阅读(155) 评论(0) 推荐(0) 编辑

摘要: #include <stdio.h>头文件#ifdef __GNUC__#define PUTCHAR_PROTOTYPE int __io_putchar(int ch)#else#define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)#endifPUTCHAR_PROTOTYPE{USART_SendData(EVAL_COM1, (uint8_t) ch);while (USART_GetFlagStatus(EVAL_COM1, USART_FLAG_TC) == RESET){}return ch;}定义了以上的然后就可以调 阅读全文
posted @ 2013-06-01 10:10 itloverhpu 阅读(221) 评论(0) 推荐(0) 编辑