by Alpha
19. November 2009 20:29
连接失败:验证用户时发生未知错误。 解决方法:用户名输入card,密码输入card
2879b765-ae32-44c7-8c24-949d331d6c86|0|.0
Tags: cdma, wince Views:644
WINCE
by Alpha
10. October 2009 16:37
作者:ARM-WinCE DAT文件用于在WinCE启动的时候,定义文件系统的结构,也就是定义有哪些文件夹,哪些文件在什么位置等。每次冷启动的时候,Filesys模块会根据.dat文件中的内容来创建目录以及目录下的文件。 在BSP中我们可以找到platform.dat。在创建一个WinCE的工程以后,可以在工程目录下面找到project.dat。可以在这两个.dat文件中定义我们所需的根目录以及相应的子目录和文件,当然Windows文件夹及其包含的子文件夹除外。用户可以通过定义快捷方式的方法来引用Windows目录下的文件。 关于DAT文件的具体格式,来举个例子: root:-Dire...
[More]
28cddcc9-3e4e-407c-b26e-b107425895a3|0|.0
Tags: wince, dat文件 Views:927
WINCE
by Alpha
14. September 2009 09:44
using System;
using System.Runtime.InteropServices;
class SysDateTime
{
private struct SYSTEMTIME
{
public ushort wYear;
public ushort wMonth;
public ushort wDayOfWeek;
public ushort wDay;
public ushort wHour;
public usho...
[More]
ce6e47df-adba-464e-83d8-60be17fe2f11|0|.0
Tags: wince, 设置时间 Views:1715
WINCE
by Alpha
5. September 2009 18:05
[DllImport("Coredll.dll")]
extern static int KernelIoControl(int dwIoControlCode, IntPtr lpInBuf, int nInBufSize, IntPtr
lpOutBuf, int nOutBufSize, ref int lpBytesReturned);
[DllImport("Coredll.dll")]
extern static void SetCleanRebootFlag();
public void HardReset()
{
int IOCTL_HAL_REBOOT =...
[More]
e1964121-3e77-4ec1-b37a-ae5d48f27e9c|0|.0
Tags: c#, 重启, wince Views:1496
WINCE
by Alpha
4. September 2009 19:09
近日在开发过程中遇到WinCE应用程序开机自动运行的问题,在网上找了找,发现大概有以下三种方法: 1、 将应用程序和应用程序快捷方式添加到映像里,再将快捷方式添加到StartUp目录下,这样当系统运行后应用程序就能自动运行; 2、 直接替换Wince的SHELL,即修改注册表: [HKEY_LOCAL_MACHINE\init] "Launch50"="explorer.exe" "Depend50"=hex:14,00, 1e,00 把这个explorer.exe改成你的应用程序(比如:MyApp.exe); ...
[More]
f9a7f7ef-f14c-492e-86f7-2fc6fde4a318|0|.0
Tags: wince, 开机启动 Views:1549
WINCE
by Alpha
4. September 2009 14:30
using System.Runtime.InteropServices;
[DllImport("coredll.Dll", EntryPoint="CreateProcess", SetLastError=true)]
extern static int CreateProcess(string strImageName, string strCmdLine, IntPtr pProcessAttributes,
IntPtr pThreadAttributes, int bInheritsHandle, in...
[More]
by Alpha
29. August 2009 14:58
总共有两处需要修改: 1.c:\WINCE500\PLATFORM\SMDK2440A\Src\Bootloader\Eboot\ bitmap.c和main.c 2.c:\WINCE500\PLATFORM\SMDK2440A\Src\Kernel\Oal\ bitmap.c和init.c
by Alpha
23. August 2009 19:28
wince 5.0下面没有,到CSDN上面发帖,也没有人回复我。只好又安装了一个wince 6.0环境,把代码复制出来了,在wince 5.0下面可以正常编译。
文件位置如下:
GPSID的驱动在%_WINCEROOT\Public\Common\Oak\Drivers\GPSID,另外两个头文件Gpsapi.h和Gpsdev.h分别位于%_WINCEROOT\Public\Common\SDK\Inc和%_WINCEROOT\Public\Common\Oak\Drivers\GPSID\Inc 。
GPSID源码下载 GPSID源码
e6476e45-5184-4c60-8e68-6d295b042b07|0|.0
Tags: gpsid, wince Views:806
WINCE
by Alpha
5. August 2009 11:46
http://hi.baidu.com/zhaojiang/blog/item/a9b2b7fd39813a1508244d30.htmlTEST HANDLE HMODULE HINSTANCE HWND有什么区别?之间哪个可以转换?都是什么意思呢? --------------------------------------------------------------- Handle 是代表系统的内核对象,如文件句柄,线程句柄,进程句柄。 HMODULE 是代表应用程序载入的模块,win32系统下通常是被载入模块的线性地址。 HINSTANCE 在win32下与...
[More]
9b76833f-9d07-4db5-8001-403d8e1c9592|0|.0
Tags: wince Views:1424
WINCE
by Alpha
9. March 2009 17:13
是放在_flatreleasedir的目录下面的 吗? ------------------------ 我是这样设置的: 1. common.reg 文件中 [HKEY_LOCAL_MACHINE\init] 下添加 "Launch120"="base.exe" &...
[More]
c22914d1-8932-40d4-a2ca-546f75066448|0|.0
Tags: wince, nk Views:1282
WINCE