WPA2, AES
PB 5.0
Our WLAN driver supports WPA2. We have configured our access point to
support WPA2, AES.
When I connect with my laptop with WPA/AES type, it is getting
connected after I provide USERNAME/PASSWORD/DOMAIN
But If I choose the same configuration/credentials in my WINCE device
- WPA2/AES/PEAP, popup comes asking for username and password. Even if
I give the details correctly, popup keeps coming up asking for the
credentials. After few tries it says cancelled authentication.
1) Does this combination is supported in PB5.0 - WPA2/AES ?
Following are the settings we were asked to setup by the people who
configured AP.
The Radius details are as follows:
a. Data encryption - AES
b. EAP type - PEAP
c. No Certificate validation required
d. Authentication method - secured password (EAP-MSCHAP.V2)
2) I was able to do the the first three settings(a, b and c) in my
wnce device. I assume PEAP authentication always follows EAP-MSCHAP.V2
method. Is that correct ? Tag: How to set default cluster size of nand flash at flash memory form Tag: 102557
Surprise Remove to the USB Audio driver
Dear Experts,
I'm developing USB audio driver for the WindowsCE5.0. Until now,
everything is good execept handling surprise remove USB audio device. The
problem is i'm playing music via Media player and surprising remove device
without stop music first. Then system generates error message
"SwMixer:WaitForBuffer failed. Audio driver missed interrupt?".
For the bug, i've done experiments:
1. When get error from lpIssueIsochTransfer(), i process the data i've
received at first then return "MMSYSERR_ERROR" to OS in the WODM_WRITE
request.
2. Besides 1. i also unload our device. // via
DeactiveDevice(pUSBWave->hStreamDevice).
Both of the cases system returns the same error:"SwMixer:WaitForBuffer
failed. Audio driver missed interrupt?". I wonder is it SwMixer cannot
support surprise remove or driver has to do more?
Sincerely,
Hsiang Hua, Chao
C-Media Inc. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102556
What is RTH.exe in the NK.bin?
Hi All,
I tried to find information with regards to RTH.exe which is part of the
NK.bin image. Pardon my ignorance, can some one please tell me what does
RTH.exe do? What is it consist of (what dlls being used) and whether is it
possible to exclude it usage.
Sincerely
Jimmy Tag: How to set default cluster size of nand flash at flash memory form Tag: 102555
Registry settings for RAS server
Hi,
I'm struggling with the RAS server application for an ARMV4I board with
wince 5.0 for quite a while..
The server seems to start-up well - I did not change any of the settings.
At first, I tried adding a line with the device name of "Serial Cable on Com
Port:", since this is the "friendly name" of the unimodem I had in
HKEY_LOCAL_MACHINE\Drivers\BuiltIn\Serial\Unimodem. when using the LineConfig
function, I received an error - 659 (device not found). I saw that when
looking for the adopter, the device name and type that mine was compared to
is
"Hayes Compatible on COM1:" with "modem" type, so I changed my device name
and type, which seemed to work, since all the result values were successful
(though I did not see any GUI to change the settings).
I added this to my project.reg as well:
[HKEY_LOCAL_MACHINE\Comm\ppp\Server\Line\"Hayes Compatible on COM1:"\]
"Enable"=dword:1
"DeviceType"="modem"
"Flags"=dword:2
I created a new connection on my PC (win-XP, which is connected with the
serial port to the board) as a guest, directly to another computer, with the
maximum speed of 119200 KB, Hardware control disabled. When I tried to
connect (after starting the RAS server), I received the following error
message:
Error 777: The connection attempt failed because the modem (or other
connecting device) on the remote computer is out of order.
which is the same error received when the board is disconnected. The serial
port surely works, since I can use the hyper terminal to control it.
Any help will be most welcome..
~Y. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102550
sqlmobile and server 2000 question
I'm using the RDA - Pull method to download data from my SQL Server
2000 database to my WINCE5.0. I have this working fine in my
environment,
but when I try to run it on a clients network I am getting an error.
Error Code: 80070005
Message :
Minor Err.: 0
Source : Microsoft SQL Server 2005 Mobile Edition"
When I browse out to the SSCESA30.DLL file from IE Explorer, I do get
"Microsoft SQL Server Compact Edition Server Agent" returned,
but only if I enter the domain (along with UID & PWD)
when prompted from the explorer session. Do I need the domain
somewhere in the connection string of my program? All I have in it now
are the URL Login & URL Pwd. If I do, can anyone give me an example of
how I would add it to my vs2005 code. Thanks.
This is my code:
Private Sub pull()
Dim strLocalConnect As String
Dim strRemoteConnect As String
strRemoteConnect = "Provider=SQLOLEDB;Data Source=LF-
WINXP;User ID=sa;Password=jianwei;Initial Catalog=SPMS2005"
strLocalConnect = "Data Source=" + DatabaseName
Try
Dim rda As SqlCeRemoteDataAccess = New
SqlCeRemoteDataAccess()
Dim strSelectTablerToD As String
strSelectTablerToD = "SELECT * FROM dbo.issue"
rda.InternetLogin = ""
rda.InternetPassword = ""
rda.InternetUrl = strInternetURL
rda.LocalConnectionString = strLocalConnect
rda.Pull("xx", strSelectTablerToD, strRemoteConnect, _
System.Data.SqlServerCe.RdaTrackOption.TrackingOff)
Catch ex As SqlCeException
ShowErrors(ex)
End Try
End Sub Tag: How to set default cluster size of nand flash at flash memory form Tag: 102548
sqlmobile and server 2000 question
I'm using the RDA - Pull method to download data from my SQL Server
2000 database to my WINCE5.0. I have this working fine in my
environment,
but when I try to run it on a clients network I am getting an error.
Error Code: 80070005
Message :
Minor Err.: 0
Source : Microsoft SQL Server 2005 Mobile Edition"
When I browse out to the SSCESA30.DLL file from IE Explorer, I do get
"Microsoft SQL Server Compact Edition Server Agent" returned,
but only if I enter the domain (along with UID & PWD)
when prompted from the explorer session. Do I need the domain
somewhere in the connection string of my program? All I have in it now
are the URL Login & URL Pwd. If I do, can anyone give me an example of
how I would add it to my vs2005 code. Thanks.
This is my code:
Private Sub pull()
Dim strLocalConnect As String
Dim strRemoteConnect As String
strRemoteConnect = "Provider=SQLOLEDB;Data Source=LF-
WINXP;User ID=sa;Password=jianwei;Initial Catalog=SPMS2005"
strLocalConnect = "Data Source=" + DatabaseName
Try
Dim rda As SqlCeRemoteDataAccess = New
SqlCeRemoteDataAccess()
Dim strSelectTablerToD As String
strSelectTablerToD = "SELECT * FROM dbo.issue"
rda.InternetLogin = ""
rda.InternetPassword = ""
rda.InternetUrl = strInternetURL
rda.LocalConnectionString = strLocalConnect
rda.Pull("xx", strSelectTablerToD, strRemoteConnect, _
System.Data.SqlServerCe.RdaTrackOption.TrackingOff)
Catch ex As SqlCeException
ShowErrors(ex)
End Try
End Sub Tag: How to set default cluster size of nand flash at flash memory form Tag: 102547
Basic question with TCP and serial port
If I build an image that DOES NOT have an Ethernet connection but does have
your basic serial ports.
And I include things like a RAS server and/or FTP server, How can I set an
I/P address?
I know how to set the TCP/IP address parameters for an Ethernet device but
not for a serial device. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102546
My top wish for CE6 SP next
Fix all the CE 5 and CE 6 side by side install issues and make all the
different versions of the remote tools (VS2005,PB5 and PB6) play nicely
together. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102545
NK.bin for SMDK2410 not built
Hello,
I want to build WinCE 4.2 for an Acer N30.
Build returns without errors, Make Image runs fine, too.
But it produces only chain/core/DRIVERS/EBOOT/xip.bin.
You find the output below. postromimage.bat only demands
the NK.bin, which it can't find.
Building for Emulator x86 outputs a single NK.bin, it run's fine.
To flash the SMDK2410 image to the device I need a NK.BIN as
available from Acer for updating the device.
What do I need to get one .bin instead of five?
Please can you hint what I should look out for?
Best Regards,
Sasha
---- Make Image
...
Writing C:\Programme\WINCE420\PUBLIC\mySmallSamsung\RelDir
\EMULAT~2\NK.bin
Table of contents 812e4050 0000161c ( 5660)
Writing ROM signature and TOC pointer at 80240040
Kernel data copy section 8086af74 00000020 ( 32)
ROM Header 812e3ffc 00000054 ( 84)
First DLL code Address: 02de0000
Last DLL code Address: 04000000
First DLL Address: 01ec01ec
Last DLL Address: 02000000
Physical Start Address: 80240000
Physical End Address: 812e566c
Start RAM: 812e6000
Start of free RAM: 81325000
End of RAM: 81c00000
Number of Modules: 120
Number of Copy Sections: 2
Copy Section Offset: 8086af74
FileSys 4K Chunks/Mbyte: 128 <2Mbyte 128 2-4Mbyte 0 4-6Mbyte 0
>6Mbyte
CPU Type: 014ch
Extensions Pointer: 80245a80
Total ROM size: 010a566c ( 17454700)
Starting ip: 802ab798
Raw files size: 000d3ddd
Compressed files size: 0008099d
Compacting bin file...
Done!
makeimg: Check for C:\Programme\WINCE420\PUBLIC\mySmallSamsung\RelDir
\EMULAT~2\PostRomImage.bat to run. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102543
Windows CE HOT Key
Hi,
In the windows ce devices hard keys like answer and hangup keys
performs only when phone is active. I have question that which part or
the driver of
the system comes to know that phone is active ( Typically it is when
Internal speaker is set) and now allow these keys to perform.
If we find any module then what is the way to communicate with that
using application level programming ?
I am expecting I'll defiantly get the answer.
Thanks,
Niraj Tag: How to set default cluster size of nand flash at flash memory form Tag: 102542
Duplicated NAND folder after using Hive-Based Regsitry
Hi Everyone,
I have an evaluation board which originally sets to use RAM-Based Regsitry.
This board uses one 128MB NAND flash and there is no IPSM. Therefore changes
to Registry will lose after a power cycle. I changed RAM_Based Registry to
HIve_Based Registry and modified the common.reg as the following:
[HKEY_LOCAL_MACHINE\init\BootVars]
"SystemHive"="NAND Flash\\system.hv"
"ProfileDir"="NAND Flash"
"Flags"=dword:1
"RegistryFlags"=dword:1
"Start DevMgr"=dword:1
"DefaultUser"="User"
I rebuilt the OS and the device had no problem launching the OS. But I found
in addition to "NAND Flash" folder, there is another folder called "NAND
Flash2" and contents in there two folders are the same. Is it because that I
want to store system.hv in NAND Flash folder? Why could that happen and how
to fix it?
Thanks,
James Tag: How to set default cluster size of nand flash at flash memory form Tag: 102534
wince 6.0 Exception in gwes hangs kernel on startup
Hello,
Am attempting to port a 5.0 device to 6.0 and have ran into an
exception I can't find the cause of.
The error message given is:
Exception 'Data Abort' (4):
Thread-Id=03b60002(pth=87df4aec),
Proc-Id=00400002(pprc=80153308) 'NK.EXE',
VM-active=00400002(pprc=80153308) 'NK.EXE'
PC=c0190620(gwes.dll+0x00050620)
RA=c0190608(gwes.dll+0x00050608)
SP=d06cfddc,
BVA=00000104
And from gwes.map I see the return address 0x00050608 falls between
MaskBlt_I and StretchBlt_I in blt2.obj.
MaskBlt_I is not referenced in the Platform code, and for an
experiment I built the device with no display, but received the same
error (???)
Any clues where to investigate the possible cause? Thanks in advance
for any input. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102533
NDIS crash when
Hi,
I have a problem with NDIS crashing sometimes when I suspend my system
(Samsung S3C2410 CE5.0). It happens maybe after an hour if I sleep/
resume in 15 s intervall. The image has a driver cs8900.dll for a
cs8900 ethernet chip. Also, a GPRS modem is present. If I remove the
cs8900 driver the crash doesn't happen. The crash happens just after I
set the cs8900 chip in HW Suspend before suspend. This is done thru
OID_PNP_CAPABILITIES IOCTLs. This is how the debug output looks:
CS8900:: OID_PNP_SET_POWER to [NdisDeviceStateD3]
CS8900SetNdisDeviceStateD3
Data Abort: Thread=85ea3c00 Proc=8c226400 'device.exe'
AKY=ffffffff PC=03b645e4(ndis.dll+0x000045e4) RA=3b743b74(device.exe
+0x01733b74) BVA=3b743bc8 FSR=00000005
OEMIoControl: Unsupported Code 0x10100f4 - device 0x0101 func 61
Data Abort: Thread=85eacd94 Proc=8c226400 'device.exe'
AKY=00000005 PC=03ad44d8(tcpstk.dll+0x000144d8) RA=03ad44a4(tcpstk.dll
+0x000144a4) BVA=3b743b7e FSR=00000005
After this the system sleeps, then it can wake up on interrupt or RTC
alarm. But then it crashes immediately. I've tracked (ndis.dll
+0x000045e4) to function NdisInterlockedAddUlong by looking in
ndis.map.
Any ideas? Next step is to use debug version of ndis.dll
Regards,
Jojje Tag: How to set default cluster size of nand flash at flash memory form Tag: 102526
storagemanager registry setting...
hi, all?
I'm finding some registry value that set default filesystem format(fat16 or
fat32) when user run the format operation from 'control panel --> storage
manager'
By default, the storage manager seems to format the nand flash by fat32.
How can I change the default setting to fat16.
Isn't there any registry settings for it? Tag: How to set default cluster size of nand flash at flash memory form Tag: 102525
802.1x implementation over LAN
hi all,
It's a general question regarding 802.1x over LAN. My question is - can we
write device driver to implement 802.1x in wince 5.0? if it is possible,
where it can be implemented in a ndis device driver stack(i mean can this is
implemented at NDIS miniport driver level?).
thanq all. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102519
Daylight saving time problem with PB5.0
Hi everybody,
With PB 5.0 on a PhyCore PXA-270 (BSP from Adeneo), I try to put on
Daylight Saving Time ('Paris' time zone).
I have installed all the QFE for Wince 5.0 and added the 'SNTP Client
with DST' component to my image.
In my 'Project.reg file, I've added :
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Clock]
"AutoDST"=dword:00000001
"ShowDSTUI"=dword:00000001
In the 'Paris' time zone, on sunday October 28th, 2007, when the hour
will pass of 2:59AM to 3:00AM, then the hour must be adjusted to
2:00AM...
This is my procedure to test Daylight Saving Time mechanism :
- With 'Date/Time Properties', I set the RTC to sunday October 21th,
2007 2:00AM (one week before date/time transition) and I validate.
- With 'Date/Time Properties', I set the RTC to sunday October 28th,
2007 2:55AM (5 minutes before the time transition) and I validate.
- I wait 10 minutes, but nothing happen and the time continue to be
normally incremented.
- After this time (eg 3:05AM), if I go again in the 'Date/Time
Properties' and I validate without changing anything, WinCE 'see' the
time transition and set the time to 2:05AM with displaying a dialog
box that inform me that the time has been changed automatically.
By trying to resolve this problem, I found something curious :
when I sysgen (with "clean before building" option), I see a warning
about "tsvc_dst" :
makeimg: Warning Localization FAILED: Could not find
C:\WINCE500\PBWorkspaces\PhytecDevelBoard_DEMO\RelDir\phyCore-PXA270-DK_ARMV4I_Debug\tsvc_dst.DLL|EXE|CPL
I have installed PB5.0, cleaned the folders, installed PB5.0 and all
QFE's (up to 05-2007) but I have always this warning and the Daylight
Saving Time don't work automatically.
Can someone help me ?
--
oVo
olivier vigliengo tma fr
. @ . Tag: How to set default cluster size of nand flash at flash memory form Tag: 102510
Hive VS RAM -Based Registry
What's the difference between Hive-Based Registry and RAM Based Registry?
(And what about hard reset with each one of them?)
Mhaxx Tag: How to set default cluster size of nand flash at flash memory form Tag: 102508
Dial up connection user name password in registry
In CE 4.2 ,I was able to save the user name and password for dial up
connection in the registry without any problem.
But in 5.0 ,though the user name and password are retained in the
system,I am not able to find appropriate registry where the user name
and password are stored,so that I will be able to include them in the
OS.
Can someone let me know where the user name and password are stored.
Thanks Tag: How to set default cluster size of nand flash at flash memory form Tag: 102495
Limitations of cmd.exe on CE
Hi,
It seems like the command processor cmd.exe on CE(4.2) is a heavily
reduced version of the "cmd.exe we know".
It looks like quite a few commands are not supported in it. For
example 'for", "find", "more", etc... are not available. The "for"
instruction is quite handy to have, actually I should say it's really
a pain in the axx to not have it.
I wonder if there is a way to add support for these commands and have
a full featured command prompt, suitable to run some batch files, or
is it hopeless and I should forget about running a non trivial .bat
script on CE.
Any experience in that domain?
Thanks.
Alex Tag: How to set default cluster size of nand flash at flash memory form Tag: 102492
GetGeneralIFConfig Error
Our platform is a PXA255 WinCE 4.2 with a 802.11g CF Radio Module.
Upon inserting the WIFI adapter GetGeneralIFConfig errors are reported by
our debug build of CE 4.2.
OpenIFConfig(Comm\SDCF10G1\Params\TCPIP *Handle 0x83FE4C4, BOOL Ret: 1)
+GetGeneralIFConfig(ConfigInfo 0x83FE4C98 Handle 0xA2730)
GetGeneralIFConfig:Unable to read DefaultGateway value!
GetGeneralIFConfig:Unable to read DNS value!
GetGeneralIFConfig:Unable to read WINS value!
GetGeneralIFConfig:Unable to read UseZeroBroadcast value!
All-nets boadcasts will be addressed to 255.255.255.255
What causes this type of error?
Thanks. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102491
Why is the CE6 build process so slow ?
While doing a build, my machine gets stuck at NETCFV2_MODULES= dotnetv2 for 5
or 10 minutes.
How can I speed up this build time ? Tag: How to set default cluster size of nand flash at flash memory form Tag: 102488
Localisation of TIMESRV (tsrv_dst warning) CE 5.0
<<<<Apologies if you have already seen this and responded to this on
"microsoft.public.win32.programmer.wince",
I posted it to the wrong group (!!!!) so am reposting here.>>>>
The only warning I have left on my platform build is as follows:
makeimg: Warning Localization FAILED: Could not find C:\WINCE500\ ...
\tsvc_dst.DLL|EXE|CPL
This appears to be because the module "timesrv.dll" which handles
daylight saving time builds in a static library tsvc_dst.lib which
includes a localisable string table "tsvc_dst.res". So, the file that
should be being localised is "timesrv.dll" and all the localising
string tables are called "tsvc_dst.res".
The makefile in CESYSGEN is adding "tsvc_dst" to "servers.loc" so
that
when makeimg comes across this file, it can't find an executable an
executable with that name, ergo the warning.
So....
1. I am assuming that "timesrv.dll" has not been localised correctly.
(Not too much of a problem for me, but I'm sure not the best
situation
if you're German, Spanish, Italian, etc....)
2. I am also assuming that I could patch my release directory copy of
"servers.loc" in "PreMakeImage.bat" with something that fixes this
problem. But what is this? How do I get to localise "timesrv.dll"
using the resources for "tsvc_dst.dll" ????
Anyone that's got this far down such a complicated (& admittedly
boring) post deserves a prize!!!! If you can give me the answer, I
might even send you one!!!!
Thanks in advance,
Andrew. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102486
Unicode Script Processor
Hello Everybody,
Has anyone tried adding indic or complex script support to wince 5.0. How is
the performance?
I have observed that the indic support with Mangal font based UI works
considerably slow, has anyone observed otherwise.
Also, I have observed that the months(in Marathi indic language) in the
system calender paint as fast as its US English counterpart however it paints
slowly from a DOTNET and MFC application.
Is it a issue related to Complex script if yes is there any alternative
solution???
In anticipation of a reply ASAP
Regards,
Ann Tag: How to set default cluster size of nand flash at flash memory form Tag: 102479
installable Interrupt
I actually have my installable interrupt routine working but I was hoping
someone could explain some things about it to me? I see how the
"instance" gets created, I call LoadIntChainHandler
then I setup ISR_INFO... and pass it via
KernelLibIoControl
now KernalLibIoControl calls the IoControl routine inside my in dll, with
an "instance" my dll also has a routine called CreateInstance How
does CreateInstance get called ? how does the kernal know how many
"instances have been created? my assumption is that the call to
LoadIntChain.. calls CreateInstance and keeps track of the number of
instances but I cant prove this...
then when an interrupt occurs, the kernal calls my isrHandler once for
each "instance" created during loadInt call until it gets a return value
other then SYSINTR_CHAIN ?,
Now I have and interrupt service thread routine that is waiting on an event,
how does this get event get created ?
Just want to make sure I understand how this really works...
Thanks,
Joe Welfeld Tag: How to set default cluster size of nand flash at flash memory form Tag: 102477
CEPC Does not recognize Hard Drive
Hi,
I have installed WinCE 5.0 & Platform Builder on a Windows XP desktop
computer, having these characteristics:
- CPU: Intel(R) Pentium(R) 4 CPU 3.00GHz
- RAM: 512 MB
- Hard Disk: 20 GB
My CEPC has the following configuration:
Processor : AMD Inc., i486
Mother Board : RS482M4
Chip set : ATI =AE SB450
Hard Drive : 20GB, Western Digital WD200BB-75AUA1
PC Model : Wipro Super Genius
These are the steps I made:
- I followed the procedure mentioned in the Platform Help "How to
Configure Hard Disk Drives on a CEPC" and added FAT file system /
storage device/wordpad to the OS design and built the OS image nk.bin.
- I booted another machine(CEPC) from the floppy which has the boot
sequence
- I attached the Windows XP desktop computer to the CEPC through
Ethernet & loaded the nk.bin to CEPC
Wince runs correctly on CEPC but I have some problems:
1) The hard disk drive is not recognized, even if in the OS design I
have inserted all the needful drivers and applications, as explained
in the Platform Help (section "How to Configure Hard Disk Drives on a
CEPC").
2) The computer BIOS recognises hard drive.
3) Do the drivers of ATI =AE SB450 support WINCE?
Can someone please give me some advice or some useful link?
Thanks in advance.
---------------------------------------------------------------------------=
-----
Bhavani Tag: How to set default cluster size of nand flash at flash memory form Tag: 102468
Wince4.2 + S3C2440 USB device and activeSync with NOTIFICATION_EVENT_RS232_DETECTED
CPU:S3C2440
Debut COM:com2
application COM:com1
I had added the USB function and serial driver.
after cold start/reset , system works okay and when I pluged the USB
device , ActiveSync could connected and works well, but after I run my
com port testting application( the COM1 will continuely receiving the
extral data), the debug port outputting the many information like
below:
--------------------
Event occurred : NOTIFICATION_EVENT_RS232_DETECTED
SL_ModemIntr - pHWHead->OpenCount 0
!pHWHead->OpenCount : 0x0
IsAPIReady(SH_WMGR) == true
Indicating RS232 Cable Event
Event occurred : NOTIFICATION_EVENT_RS232_DETECTED
SL_ModemIntr - pHWHead->OpenCount 0
!pHWHead->OpenCount : 0x0
IsAPIReady(SH_WMGR) == true
Indicating RS232 Cable Event
Event occurred : NOTIFICATION_EVENT_RS232_DETECTED
SL_ModemIntr - pHWHead->OpenCount 0
!pHWHead->OpenCount : 0x0
IsAPIReady(SH_WMGR) == true
Indicating RS232 Cable Event
Event occurred : NOTIFICATION_EVENT_RS232_DETECTED
SL_ModemIntr - pHWHead->OpenCount 0
!pHWHead->OpenCount : 0x0
IsAPIReady(SH_WMGR) == true
Indicating RS232 Cable Event
Event occurred : NOTIFICATION_EVENT_RS232_DETECTED
SL_ModemIntr - pHWHead->OpenCount 0
!pHWHead->OpenCount : 0x0
IsAPIReady(SH_WMGR) == true
Indicating RS232 Cable Event
Event occurred : NOTIFICATION_EVENT_RS232_DETECTED
SL_ModemIntr - pHWHead->OpenCount 0
!pHWHead->OpenCount : 0x0
IsAPIReady(SH_WMGR) == true
Indicating RS232 Cable Event
Event occurred : NOTIFICATION_EVENT_RS232_DETECTED
.....
----------------------------------------------------
I checked some register settings and serial driver code , could not
found any error. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102462
SD card I/O
Hi All,
I have WinCe 5.0 on S3C2440A platform .I am working on a navigation
device and my application ,data is stored in a SD card.Iam facing
problems with suspend and resume.My application is freezed for few
seconds after resuming form suspend state.I read many discussions
regarding this issue in groups.I have tried to set the values for
"PNPUnloadDelay" and "PNPWaitIODelay".After this chnages my device is
not waking up from suspend itself.Anybody please suggest some solution
to resolve this issue.
Thanks in advance.
Sam Tag: How to set default cluster size of nand flash at flash memory form Tag: 102461
X86 emulator : ping not happening
Hi,
I've built the x86 emulator internet appliance platform.The network driver
"dc21x4.dll" will be loaded but I'm not able to ping from emulator to my
desktop pc or to the default gateway.It gives "transmit failed:error 11010.
ipconfig command is showing the IP address.
I've disabled DHCP & assigned static IP address with default gateway being
same as that of my desktop pc.I modified platform.reg as follows:
[HKEY_LOCAL_MACHINE\Comm\DC211401\Parms\TcpIp]
; @CESYSGEN IF CE_MODULES_DHCP
"EnableDHCP"=dword:0
; This should be MULTI_SZ
"DefaultGateway"="192.xxx.y.1"
; Use zero for broadcast address? (or 255.255.255.255)
"UseZeroBroadcast"=dword:0
; This should be MULTI_SZ, the IP address list
"IpAddress"="192.xxx.y.abc"
; This should be MULTI_SZ, the subnet masks for the above IP addresses
"Subnetmask"="255.255.255.0"
; @CESYSGEN ENDIF CE_MODULES_DHCP
ENDIF BSP_NOETHER !
; @CESYSGEN ENDIF CE_MODULES_NDIS
In spite of this, the network is not working(ping fails with error code
11010).But IP address 192.xxx.y.abc is shown with ipconfig command.
Please suggest me what shall i do? Tag: How to set default cluster size of nand flash at flash memory form Tag: 102457
as for debugging mode.
hello, everyone?
I'm trying to use break point with some bsp under the following condition.
- build option : SYSGEN_SHELL=1, IMGEBOOT=1, IMGCELOGENABLE=1, no
IMGNODEBUGGER=1, no IMGNODEBGGER=1, no IMGNOKITL=1, IMGPROFILER=1.
( I checked the uppper 6 options at build option window and also add
'platform manager' catalog to my project.
- build mode : Release mode
Although there is no wrong with settings, the bsp can't use break point at
PB.
Is there any job to support the break point?
Currently, the break point can be made but it can't be stopped at the break
point. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102455
WinCE50, USB Function: Mass Storage Problem ?
Dear all:
I try to export the SDMMC directory of the embedded device to
the WinXP, like USB MASS STORAGE. I do the following operations:
Step1: On WinXP, rename the default folder name from "Removable Disk"
to "DeviceStorage".
Step2: Plug out the SD card, but the WinXP's Explorer still shows
"DeviceStorage", not "Removable Disk".
I press the F5 key and the WinXP's Explorer shows the correct
text"Removable Disk".
The problem is caused by WinXP's bug or
the USBFN code which fixed by me has some bugs?? SCSI command?
Please give me some help, thank first. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102453
MP3 player
Could someone tell if it's simple or hard to develop an MP3 player by your
own?
Mhaxx Tag: How to set default cluster size of nand flash at flash memory form Tag: 102449
MSG_DONTROUTE in socket send/sendto
Dear all,
It would appear that Windows CE 5.0 is ignoring the MSG_DONTROUTE flag
in "send" and sendTo" over a WLAN connection (don't know if this is
relevent or not).
The help is not clear as to whether this is supported or not:
"MSG_DONTROUTE Specifies that the data should not be subject to
routing. A Windows Sockets service provider can choose to ignore this
flag."
Does anyone know the definitive answer?
Thanks,
Andrew. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102447
Undefined instruction exception. WLAN
I'm getting the followng undefined insruction exception.
Undefined Instruction: Thread=83c4b000 Proc=81566320 'device.exe'
AKY=00000005 PC=01be0590(wlan.dll+0x00050590) RA=01bd2760(wlan.dll
+0x00042760) BVA=09ffed04 FSR=000000f5
When I referred the WLAN.map file I dont see any 0x00050590(wlan.dll
+0x00050590) address at all. All addresses are like 0001:000012dc(4
digits).
I checked the RA=01bd2760(wlan.dll+0x00042760). I searched the map
file for address 0x00042760. I'm able to find 00142760. The preferred
load address is given as 0x00100000.
So I thought I was able to get to 42760 in map file. But as you see
below no function name is seen but some wild junk characters.
0003:00003760 ??_C@_1CC@ILOB@?$AAW?$AAR?$AAO?$AAN?$AAG?$AAS?
$AAS?$AAI?$AAD?$AAL?$AAe?$AAn?$AA?3?$AA?$CF?$AAd?$AA?6?$AA?$AA@
00142760 NdisMiniportHandlers.obj
In this case, how will find out which function is causing the
exception or which instruction has caused the exception.
Thanks a ton n advance. Help me out guys. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102443
Cannot mount 80GB HardDisk.
Dear all,
Does the CE 5.0 support IDE 80G HardDisk in Secondary IDE ?
I think it should be mounted to "Hard Disk" folder.
Even I can't see it but there are something strange that I can see
"DSK2:" in the Storage Manager.
And "No paritions" ?? why? Tag: How to set default cluster size of nand flash at flash memory form Tag: 102441
Exception in coredll when WLAN tried reconnecting
PB 5.0, PXA270, XSCALE
I got an exception when WLAN module tried reconnecting to the AP. I'm
not sure why I got that exception. After this I had to power of and
power on the system to make the WLAN module work again. Is it possible
to find why I got this exception ?
I have attached the debug output below.
Enabling filtering...
PHGHHAL_EVNT_DISCONNECTPHGHHAL_EVNT_DISCONNECTPHGHHAL_EVNT_DISCONNECT:
Attempting reconnectionPHGHHAL_EVNT_DISCONNECT:
HostDrvHandleLossOfConnectionConnection lost: indicated to
NDISOID_802_3_MULTICAST_LIST: Len:24
[0]:33[1]:33[2]:0[3]:0[4]:0[5]:1[6]:33[7]:33[8]:0[9]:0[10]:0[11]:c[12]:
33[13]:33[14]:ff[15]:26[16]:1e[17]:19[18]:1[19]:0[20]:5e[21]:
7f[22]:ff[23]:fa
Sending the addr list to target...
Enabling filtering...
OID_802_3_MULTICAST_LIST: Len:18
[0]:33[1]:33[2]:0[3]:0[4]:0[5]:1[6]:33[7]:33[8]:0[9]:0[10]:0[11]:c[12]:
33[13]:33[14]:ff[15]:26[16]:1e[17]:19
Sending the addr list to target...
Enabling filtering...
OID_802_11_SSIDRSSI=-200
RSSI=-200
RSSI=-200
ZCF:: LogEvent new list selected.. Close current EAPOL session for
[]..
OID_802_11_SSIDOID_802_11_SSID timeoutConnection lost: indicated to
NDISHostDrvConnectToSSID return failOID_802_3_MULTICAST_LIST: Len:12
[0]:33[1]:33[2]:0[3]:0[4]:0[5]:1[6]:33[7]:33[8]:ff[9]:26[10]:1e[11]:19
Sending the addr list to target...
Enabling filtering...
OID_802_3_MULTICAST_LIST: Len:18
[0]:33[1]:33[2]:0[3]:0[4]:0[5]:1[6]:33[7]:33[8]:0[9]:0[10]:0[11]:c[12]:
33[13]:33[14]:ff[15]:26[16]:1e[17]:19
Sending the addr list to target...
Enabling filtering...
RSSI=-200
RSSI=-200
ZCF:: LogEvent close current failed EAPOL session for [PVWNET05]..
OID_802_11_SSIDRSSI=-200
RSSI=-200
RSSI=-200
RSSI=-200
RSSI=-200
RSSI=-200
RSSI=-200
RSSI=-200
RSSI=-200
RSSI=-200
RSSI=-200
Data Abort: Thread=83c190a8 Proc=815a6320 'device.exe'
AKY=00000005 PC=03fb4c70(coredll.dll+0x00054c70) RA=00000000(???
+0x00000000) BVA=06d3066e FSR=00000003 Tag: How to set default cluster size of nand flash at flash memory form Tag: 102440
I2C/KernelIOControl/OMAP2430
Hi All,
I am working on I2C driver for SDP OMAP2430.Things are working fine
till I2CTransact (I2C.C)
calls "KernelIoControl(IOCTL_KERNELI2C_SUBMIT,..) , from where I am
expecting it to go to OalIoctlKernelI2CSubmit (in ioctl.c, correct me
if I am wrong) which in turn calls KERNELI2C_PreemptibleSubmit
(kerneli2c.c).
My problem is It is stucking when it calls KernelIoControl and after
that I am unable to trace the control !! . I am getting no debug
messages I have put in either of the files ioctl.c,kerneli2c.c.
Presently I can not put breakpoints ... can anybody tells me HOW I
CAN TRACE OUT THE CONTROL and where exactly probable is the problem in
the I2C Driver.
Thanks in advamce.
Regards,
Nagesh Tag: How to set default cluster size of nand flash at flash memory form Tag: 102438
Debug output of WZCSVC.DLL
How do I enable the debug output of WZCSVC.DLL ?
I built my imagei ndebug mode, copied the WZCSVC.DLL and pasted it in
the release directory.
I gave a makeimg.
Is this correct ? I'm not sure whether WZCSVC.DLL is giving all debug
msgs.
I tried setting WZCSVC:DWORD:65535 in HKLM/DebugZones. I'm not seeing
any difference.
Any suggestions ? Tag: How to set default cluster size of nand flash at flash memory form Tag: 102437
RAS server not supported (?)
Hi,
(Initially I posted this question as a reply to an old thread. My apologies
if it was already replied to).
I'm trying to use the RAS server sample for the serial connection, and
receive an "ERROR_NOT_SUPPORTED" error code (50) from the RAS_RasIOControl
function.
I am using an ARMV4I board with wince 5.0. I added the PPP/RAS and the TAPI
components. I added the following lines to the project.reg file:
[HKEY_LOCAL_MACHINE\Comm\ppp\Server\Parms]
"Enable"=dword:1
[HKEY_LOCAL_MACHINE\Comm\ppp\Server\Line\"Serial Cable on COM port"\]
"Enable"=dword:1
"DeviceType"="direct"
"Flags"=dword:2
(and tried to run it without them)
I tried to use the RASIOControl function wth RASCNTL_SERVER_GET_STATUS and
to enable it, and received the same error.
I could not find any instructions regarding this application, aside for usage.
Is there anything missing?
Thanks in advance,
~Y. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102436
Preventing a PC booting from USB mass storage device
We are developing a new device that connects to the PC using USB mass storage
and presents the internal flash as a drive. Unfortunately we've discovered
that if you attach the device to a PC when it's turned off then boot it,
depending on the BIOS settings it may try and boot from the device.
Is there any way of preventing this? It's really more of a USB question than
Windows CE but I've tried searching and while there are hundreds of websites
describing how to set up a USB mass storage boot device, I can't find any
telling you how to do the opposite!
Thanks. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102435
Environmental variable
Hi all,
O.S wince 6.0
My batch file is same for many BSPs. There are many if conditions in it, so
on giving sysgen i wanted to know which variables are set, Is there any way
to do this?
Thanks and regards,
Sankarraj Tag: How to set default cluster size of nand flash at flash memory form Tag: 102434
How to configure password in telnetd server in WinCe 6.0 target.
Hi,
I am trying to use telnet with authentication in my WinCE 6.0 target.
In registry I have modified following entries:
[HKEY_LOCAL_MACHINE\COMM\TELNETD]
"IsEnabled"=dword:1
"UseAuthentication"=dword:1
"UserList"="my_user"
When I run a telnet to my target I am asked about a user and password, like
user I use my_user (configured in registry), but for password I do not know
what key I have to use. I have tried with empty key but it does not work.
where I have to configure the password for each user.
Any tip?
In msdn help only talk about add user but not setting a password.
Thanks, Tag: How to set default cluster size of nand flash at flash memory form Tag: 102427
TransBusAddrToStatic
I am trying to get a "static" address to pass to an ISR and I cannot get
TransBusAddrToStatic to return TRUE, If I pass the exact same parameters
to
TransBusAddrToVirtual I get a valid virtual address I can use to address
my device, but when I call TransBusAddrToStatic with the same parameters
it returns a false ?
Can anyone shed some light on what the difference is and how I can debug
this one ?
thanks,
Joe W. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102420
CE 6.0 Parallel port printing problem
Hi,
Thanks in advanced.
In Windows CE 6.0 ADD Printer Wizard shows only Network printer port.
If I connected USB Printer then it shows LPT2 and Network printer ports.
I want to add Parallel and COM printers in the CE 6. but it can not show
LPT1 And COM ports.
But Microsoft Wordpad and Internet Explorer (Ce 6.0) Printer Applet shows
all ports properly in their applet ... ie
COM1 : 9600,
COM2 : 9600,
LPT1,
LPT2 (If USB connected),
Network.
My registry setting is
[HKEY_LOCAL_MACHINE\Printers\Ports]
"Port1"="COM1: 9600"
"Port2"="COM2: 9600"
"Port3"="LPT1:"
"Port4"="NET0:"
Also I try with Windows CE 5.0 it works fine.. no issue.
I compare printer sources (RDP Folder) and registry settings of CE 5 and CE
6 .. all are same.
Please reply as early as possible...
with regards,
Pradip Shinde. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102418
Evaluation Version
Hello,
a colleage of me have installed Evaluation Edition of Windows CE 6.0 and got
a key on 4th of Feb 2007. It should be working for 180 days and such big time
we need, because having a big product we need time to check if it will work
under Windows CE or not. But unfortunately, yesterday Evaluation was already
expired and message "TimeBomb" comes from makeimg tool during Sysgen of
NK.BIN.
It seems to be 150 days version ??? Or where is the problem??
This is very disappointed, because we need 2 weeks more testing to decide if
we produce a product for Windows CE or not. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102416
productkey of wince6.0
Hi all,
I install the winCE6.0 evaluation version but it is asking for
the productkey for which i created a account. but still i am not able
to get the product key.please give some suggestion. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102413
USB Bulk in issue
Hi all,
I am writing a USB client driver. I faced a issue about USB bulk in.
I call usb function
Trans = (UsbFuncs->lpIssueBulkTransfer)(
hBulkInPipe,
BulkRxComplete, // Notify function
pContext,
(USB_IN_TRANSFER|USB_SHORT_TRANSFER_OK|USB_NO_WAIT),
2048,
pContext->TransferBuffer,
0);
after bulk in completed, the BulkRxComplete() will be called.
in my BulkRxComplete()
BulkRxComplete()
{
...
bRc = (UsbFuncs->lpGetTransferStatus)(
Trans,
&dwBytesTransferred ,
&dwUsbErr);
bRc = (UsbFuncs->lpCloseTransfer)(Trans);
...
}
I want to the number(dwBytesTransferred) of bytes transferred.
dwBytesTransferred should be the actully byte counts in USB bulk in. But I
found the dwBytesTransferred might large then actually USB packet length and
aligned to 16 or 32 bytes.
That means a usb bulk in packet length is 99 bytes but dwBytesTransferred=128.
Is anything wrong in my code? Or just Windows CE USB host drvier add some
padding bytes? I am looking for your response and thanks in advance
Best Regards,
//Claude Tag: How to set default cluster size of nand flash at flash memory form Tag: 102411
Time conversion problems in Intel's IXDP425 BSP
Hello,
if you are running into trouble with real-time clock issues and you are
using Intel's IXDP425 BSP please notice the following:
There is a software real-time clock implemented (sw_crt.c) which you can
modify to write/read the software time to/from your hardware.
They are using the self-implemented routine Temp_SystemTimeToFileTime to
convert between SYSTEMTIME and FILETIME. The comments say that this is only a
workaround, because of 64bit-multiplication issues in CE4.2, and that this
routines should not be present in the release, nonetheless they still are
used (sw_rtc.c) in the BSP.
DO NOT USE THIS FUNCTION, BECAUSE:
1) In CE5.0 it is no longer neccessary, because the issue is/was only in CE4.2
2) It is NOT WORKING CORRECTLY!!
Use "KSystemTimeToFileTime" instead (the routine that comes with CE) , it is
working correctly. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102410
Question about BINFS and Bootloader?
I want to implement BINFS in my bootloader, but I want to store a
NK.bin in the BINFS partition.
Is it possible?
Thanks. Tag: How to set default cluster size of nand flash at flash memory form Tag: 102409
PCI_COMMON_CONFIG with HalGetBusData in CE-6.0
Hi, I want to port my x86 CE-4.2 Application to CE-6.0. Therefore, I
have to move several functions to my new user mode driver. I have to
read/write data from PCI bridges/slots. In my CE-4.2-App. I do this
with HalGetBusData and HalSetBusData, which works fine. In my CE-6.0
user mode driver, I can't access these informations.
HalGetBusData returns always 0 and GetLastError() returns 50 -> "The
network request is not supported"
PCI_COMMON_CONFIG pciConfig = {0};
ULONG busNr = 2;
ULONG sloNr = 15;
SetLastError(0);
ULONG res = HalGetBusData(
PCIConfiguration,
busNr,
sloNr,
&pciConfig,
sizeof(PCI_COMMON_CONFIG));
DWORD dError = GetLastError();
Thanks a lot
Peter Kaluscha Tag: How to set default cluster size of nand flash at flash memory form Tag: 102406
Hi, all?
I wanna know if there is any way to change the default filesystem or cluster
size value when formating nand flash with 'control panel --> storage
manager'.