摘要: eclipse 可以编写单片机代码,替代收费的mdk与iar。 一、下载eclipse eclipse有多个版本,我们需要的是C/C++版本的,可以选择下载其他版本,然后后期添加CDT插件,为了省事,我们直接选择下载CDT版本的,下载链接 http://www.eclipse.org/downloa 阅读全文
posted @ 2018-01-03 17:53 TextBox123 阅读(6876) 评论(0) 推荐(0) 编辑
摘要: #include #include #include void conventStr(char *str, const int strlen); int main(void) { char str[] = "how old are you?"; conventStr(str, sizeof(str)); printf("%s", str); system... 阅读全文
posted @ 2017-06-01 11:48 TextBox123 阅读(153) 评论(0) 推荐(0) 编辑