上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 35 下一页

2017年9月9日

Leetcode c语言-Longest Substring Without Repeating Characters

摘要: Title:Given a string, find the length of the longest substring without repeating characters.Examples:Given "abcabcbb", the answer is "... 阅读全文

posted @ 2017-09-09 11:30 sichenzhao 阅读(131) 评论(0) 推荐(0) 编辑

2017年9月8日

Leetcode c语言-Add Two Numbers

摘要: Title:You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each... 阅读全文

posted @ 2017-09-08 10:48 sichenzhao 阅读(384) 评论(0) 推荐(0) 编辑

Leetcode c语言-Two Sum

摘要: Leedcode上面的题对面试很有帮助,problem上的solutions也有很多,但都是java,python,c++,js等高级语言的解答,用c的很少,Leecode也是在不久前才增加了对c的支持,接下来本人开始对problem进行c语言解答。Title:Giv... 阅读全文

posted @ 2017-09-08 10:15 sichenzhao 阅读(336) 评论(0) 推荐(0) 编辑

2017年8月26日

Newlib编译

摘要: 对于嵌入式开发者,newlib并不陌生,Newlib是一个面向嵌入式系统的C运行库。最初是由Cygnus Solutions收集组装的一个源代码集合,取名为newlib,现在由Red Hat维护。newlib官网:https://sourceware.org/newl... 阅读全文

posted @ 2017-08-26 18:30 sichenzhao 阅读(761) 评论(0) 推荐(0) 编辑

2017年8月13日

Add wpa_supplicant_fork command on RTEMS-libbsd

摘要: 在将wpa_supplicant移植到RTEMS上后,我们能在shell command中使用该命令,但是存在一个BUG,当我们通过命令wpa_supplciant配置WPA时,我们不嫩使用其他命令,或者其他thread。因此我们要创建一个新的thread让wpa_s... 阅读全文

posted @ 2017-08-13 16:05 sichenzhao 阅读(136) 评论(0) 推荐(0) 编辑

Port WPA supplicant to RTEMS-libbsd

摘要: 上篇博文详细描述了import wpa_supplicant from FreeBSD。 这篇博客将描述如何将wpa supplicant 在RTEMS环境下编译。1.RTEMS doesn't support the PID and daemonize, so we... 阅读全文

posted @ 2017-08-13 15:55 sichenzhao 阅读(206) 评论(0) 推荐(0) 编辑

Import WPA from FreeBSD

摘要: 对于WPA 加密WiFi,我们需要的是wpa_supplicant 软件,该软件广泛应用于BSD, Linux, Windows等操作系统,主要功能是WiFi管理功能,多用于WPA/WPA2协议的加密WiFi。因此需要从FreeBSD中移植该软件到RTEMS上。注意:... 阅读全文

posted @ 2017-08-13 15:06 sichenzhao 阅读(125) 评论(0) 推荐(0) 编辑

添加OpenSSL库支持for WPA on RTEMS-libbsd

摘要: WPA加密WiFi需要OpenSSL库的支持,因此我们需要从FreeBSD中import该库。RTEMS git 的master branch已经merge该部分的本人贡献的代码。可前往自行下载。1. Add openssl lib files in libbsd.p... 阅读全文

posted @ 2017-08-13 14:56 sichenzhao 阅读(164) 评论(0) 推荐(0) 编辑

Add Copy headers support for RTEMS-libbsd

摘要: 在移植OpenSSL库的过程中,碰到了问题:当我从FreeBSD import 文件并port to RTEMS时,被include的头文件的文件路径和其实际的文件路径不同时,会造成编译错误,因为编译器waf找不到头文件。一个例子就是:the . The source... 阅读全文

posted @ 2017-08-13 14:35 sichenzhao 阅读(125) 评论(0) 推荐(0) 编辑

添加WEP 加密WiFi支持 for RTEMS-libbsd on BBB BSP

摘要: 在实现USB WiFi 芯片 rtl8188eu驱动后,接下来开始实现加密WiFi: WEP,目前rtems的GitHub上的master 已经merge了本人贡献的WEP代码,可以自行前去下载。1.Add the WEP module suppport in nex... 阅读全文

posted @ 2017-08-13 14:18 sichenzhao 阅读(249) 评论(0) 推荐(0) 编辑

上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 35 下一页

导航