
wince
文章平均质量分 78
rx_wen
这个作者很懒,什么都没留下…
展开
-
capture network traffic on windows ce
When developing network applications, it's always necessary to capture network traffic. Windows ce has built-in sniffer tool, netlog for this purpose. It captures network traffics to a file that can be examined with wireshark or network monitor.To enable原创 2010-05-14 19:11:00 · 796 阅读 · 0 评论 -
use googletest on windows ce
I've been trying to use googletest on windows ce platform to do unit testing. But gtest doesn't provide a windows ce project file, so I had to modify the project myself. Here is how to do so:1. Add a new platformI added a new windows ce based platform (原创 2010-05-10 21:48:00 · 661 阅读 · 0 评论 -
perform profiling on windows ce
Profiling is an effective way of finding out bottlenecks in an application. On windows ce platform, profiling can also be done easily.To perform profiling for native code, we can use the /callcap compiler option to enable callcap profiling. After it's en原创 2010-07-01 20:07:00 · 505 阅读 · 0 评论 -
resolve windows ce remote tool connection issue
remote tools for windows ce is a set of powerful tools for debugging. I have Visual Studio 2005, Windows Embedded CE 6.0 R3 installed, but the remote tools don't work. They fail to connect to device with following error message:The Microsoft ActiveSync re原创 2011-03-08 19:50:00 · 1213 阅读 · 1 评论 -
extend windows ce platform with oalioctl
Though not being a open source platform, windows ce is designed to be flexible so that device venders can extend it easily. oalioctl is a feature that makes it possible to do things in kernel space on behalf of application. Features1. ExtensibilityThe原创 2011-04-14 20:09:00 · 595 阅读 · 0 评论