Tagged Questions
Windows CE (officially named Windows Embedded Compact) is an operating system created by Microsoft for embedded devices, optimized for minimal storage.
18
votes
7answers
10k views
Windows CE vs Embedded Linux
Now I'm sure we're all well aware of the relative merits of Linux vs Windows Desktop. However I've heard much less about the world of embedded development. I'm mainly interested in solutions for ...
14
votes
2answers
472 views
Compile Boost 1.47 for Windows CE
There is actually a bit of information out there about people trying to build the Boost libraries for Windows CE, but no one has reported success or even given the steps required to do so. With the ...
9
votes
2answers
408 views
How to create a DLL that will be used in C#
I have ICOP VDX-6354 board running Win CE. I'm trying to control the buzzer of the board from my C# program. I tried all the playsound etc "coredll.dll" platform invokes. none of them worked so far. ...
8
votes
2answers
284 views
Network connections only work if device connected via cable
Ok, I tried for the last couple hours and I give up:
I develop for a mobile device (Win CE on Unitech HT660) and have a weird thing occurring:
I try to communicate with a service on my PC and I'm ...
8
votes
14answers
26k views
J2ME VS Android VS iPhone VS Symbian VS Windows CE [closed]
I have very little idea about mobile platforms, though I am interested to program for them.
Would you please compare J2ME VS Android VS iPhone VS Symbian VS Windows CE.
I would like to know:
...
7
votes
2answers
288 views
HttpRequest/HttpResponse Memory Leak? CF.NET 3.5 WIN CE 6.0
I have tried everything possible to get rid of what I think is a memory leak with the HttpRequest or HttpResponse Classes in the CF.NET 3.5 running on a Win CE 6.0 device. I am using them to ...
7
votes
2answers
256 views
Creating Object Instances Faster Than Reflection in Windows CE
So after looking at an article describing how to Create Object Instances Faster Than Reflection I got really excited since in my code I currently have quite a bit of reflection. Unfortunately ...
7
votes
2answers
256 views
What is the development experience for Windows Embedded Handheld?
With the release of Windows Phone 7 almost upon us, I was wondering if anyone had details of the other successor to Windows Mobile - Windows Embedded Handheld?
The roadmap had release in the 2nd half ...
7
votes
1answer
1k views
Consuming a USB HID device in Windows CE 6.0 using c#
I am working on an Embedded Windows CE project and am interested in accessing a USB HID device through one of its USB Host ports. All I really need to read are the raw HID spec packets. On a windows ...
6
votes
10answers
486 views
What is the relationship between C and the Windows API?
I looked at some other questions on SO and its not clear if c is built on top of, under, or alongside the WINAPI. Like for example could someone write something in pure c that was able to open a ...
6
votes
9answers
2k views
Dynamic Memory Allocation Failure Recovery
I'm working on an embedded processor (400 MHz Intel PXA255 XScale), and I thought I saw one case where there wasn't enough memory to satisfy a 'new' operation. The program didn't crash, so I assumed ...
6
votes
3answers
4k views
Windows CE deletes .NET CF on reset
I'm writing a C# application for a proprietary Windows CE 4.2 device (for which I don't have the specs or pretty much any other information. I've got access to the file system, and that is basically ...
5
votes
3answers
67 views
Blit() Performance dependent on screen rotation
I am developing an application for a WinCE 6.0 device in which there is a need to rotate the screen, so we are using the typical ChangeDisplaySettingsEx() API. and also I am drawing something on the ...
5
votes
0answers
168 views
PCIe driver for Windows CE and Windows Desktop
I need a little advice for development of a custom PCIe driver. The driver must support both Windows CE 6.0 and Windows Desktop (xp, 7, and 8 when ready).
We have a lot of experience developing ...
5
votes
4answers
1k views
C#: how to disable form move?
The MSV-Studio description for Locked is "The Locked property determines if we can move or resize the control" so I set the winforms Locked property to true but the form is still movable.
What is the ...
5
votes
2answers
411 views
how to make program that be in the taskbar windows-CE
how to make C# program that will be All time in the taskbar ?
i want to Build a Keyboard program.
i need that when i open the device the program will open and be in the taskbar.
another question ...
5
votes
6answers
646 views
Checking if a printer is attached
Is there a way in Windows (which works in Windows CE) to check if a printer is attached and communicating to LPT1 in C++?
[Edit] More info:
We are currently working with a generic Windows CE ...
5
votes
1answer
874 views
Visual Studio 2008: Don't deploy SQL Server Compact 3.5 when debugging
I'm using VS2008 to create a Compact Framework application for a Windows CE 5.0 device (Datalogic Kyman). I'm using SQL Server Compact 3.5 in my application. However, I'm debugging on a Kyman that ...
5
votes
1answer
761 views
Detecting 'Network Cable Unplugged' in the Compact Framework
I've been through all of the Stack Overflow answers search comes up with, and neither Google or Bing are showing me any love. I need to know when a network cable has been connected or disconnected on ...
5
votes
4answers
1k views
Is switch from MFC to QT or WTL (or other GUI toolkit) recommended for Windows CE development?
There are pretty many questions regarding C++ GUI toolkits for Windows, but they mostly apply to desktop OS versions.
I'm now starting a C++ project for Windows CE 5.0 VGA hand-held device, and ...
5
votes
4answers
1k views
windows ce - 2d graphics library
I have Windows CE 5.0 device and it doesn't support any hardware accelearation.
I am looking for some good 2d graphics library to do following things.
I prefer backend programming in Compact .Net ...
5
votes
6answers
2k views
Need to implement “expiration date” for beta software C#
I am developing software in C# for a Windows CE device and I have beta software soon to be released and I want it to die after a certain date so the final release will need to be downloaded.
The ...
5
votes
2answers
463 views
Ignoring queued mouse events
I have an application written in C# targeting .NET Compact Framework 3.5, running on Windows CE. From time to time, operations lasting for a second or so are being performed on the UI thread. I ...
5
votes
5answers
2k views
Using boost in embedded system with memory limitation
We are using c++ to develop an application that runs in Windows CE 4 on an embedded system.
One of our constraint is that all the memory used by the application shall be allocated during startup ...
5
votes
7answers
2k views
Compact Framework - Lightweight GUI Framework?
Winform on CF is a bit heavy, initialising a lot of windows handles takes serious time and memory. Another issue is the lack of inbuilt double buffering and lack of control you have over the UI ...
5
votes
3answers
291 views
Whats the best way of finding ALL your memory when developing on the Compact Framework?
I've used the CF Remote Performance Monitor, however this seems to only track memory initialised in the managed world as opposed to the unmanaged world. Well, I can only presume this as the numbers ...
4
votes
1answer
161 views
Why does the thread synchronization not work?
I have written a multithreaded program, in which three threads are trying to save the text to the same file. I applied the critical section. And under windows 7 works perfectly but in CE 6.0 does not ...
4
votes
1answer
74 views
Windows Mobile Device Emulator - Create Device with custom resolution
I am currently developing an application for a windows ce 6.0 device with Visual Studio 2008 and the Compact Framework 3.5.
The device itself has a resolution of 800x480 pixels.
Currently I am ...
4
votes
1answer
70 views
Need information about using Inline Assembly for WinCE, ARM9
I am not very good in inline assembly, but planning to use it for optimization purpose in an Embedded project. As I don't know much of the information about it, I am in need of some help.
I am having ...
4
votes
1answer
57 views
Debug ASP Pages in HTTPD
We are developing ASP pages for a Windows CE device. We need to debug the ASP pages for reducing the development effort. The ASP pages uses a COM component for getting data from the device. The web ...
4
votes
1answer
96 views
How to get the PE file's base address after geting the HINSTANCE by LoadLibraryW() under Windows CE?
As a HMODULE isn't the same as the load address of a loaded PE under Windows CE. How can I get the load address after geting the HINSTANCE by LoadLibraryW()?
4
votes
4answers
578 views
Is it possible to kill WaitForSingleObject(handle, INFINITE)?
I am having problems closing an application that uses WaitForSingleObject() with an INFINITE timout.
The full picture is this. I am doing the following to allow my application to handle the device ...
4
votes
2answers
300 views
asynchronous communication between c++ and c# in the same app
Is there any way I can asynchronously communicate with c# code from c++, in the same process?
I mean that I have to mix managed c# and unmanaged c++ (using pInvoke) in the same WindowsCE based ...
4
votes
2answers
358 views
How to control windows-ce 5.0 backlight?
Is there a way to control to a windows-ce 5.0 tablet device (DAP CE8800) backlight (dim/bright) programatically using C#?
4
votes
1answer
136 views
Is it possible to use the USB port of the host PC in Window CE 6.0 emulator?
I would need to use the USB port of the host PC in Windows CE 6.0 R3 emulator.
Is this possible? or is there any kind of workarround?
I would like to test my application without having my target, ...
4
votes
2answers
277 views
Motherboard beep on Windows CE
I wish to emit a "beep" from the motherboard of a system running Windows CE. Most information / code I have come across use MessageBeep which, from what I can tell, attempts to use the soundcard as ...
4
votes
0answers
178 views
How to get older CE 6.0 updates
I'm working on a project with CE 6.0 and I need to rebuild the tree. My problem is that I have to update the tree up to May 2009, this requires the 2008 rollup and the following 5 monthly updates, but ...
4
votes
1answer
144 views
Leading zeros calculation with intrinsic function
I'm trying to optimize some code working in an embedded system (FLAC decoding, Windows CE, ARM 926 MCU).
The default implementation uses a macro and a lookup table:
/* counts the # of zero MSBs in a ...
4
votes
7answers
244 views
Customized UI - Windows or Linux?
I'm not sure if this is possible, but I'll give it a go.
I'm creating a device where I have to add a customized user-interface instead of the normal operating system UI. I'm thinking of installing ...
4
votes
1answer
487 views
How can I play .ogg, mp3, without Directsound libs in Windows CE 5.0 (Build 1400) in C#?
I've been facing a road block in trying to incorporate .ogg and .mp3 files in a WinCE 5.0 (build 1400) environment. Many of the answers I've found require some part of the Directsound libraries which ...
4
votes
2answers
2k views
How to compile Qt 4.6.3 for Windows Mobile (Windows CE) under Windows?
LNK1112: module machine type ' X86' conflicts with target machine type 'THUMB'
I'm trying to build Qt for Windows CE/Windows Mobile and I'm following this guide:
...
4
votes
3answers
725 views
Real Silverlight Support on Windows Embedded Compact 7?
So Windows Embedded Compact 7 (another classic from the naming department) supports Silverlight for Windows Embedded.
http://www.microsoft.com/windowsembedded/en-us/products/windowsce/compact7.mspx
...
4
votes
4answers
276 views
Help me understand this C code
INT GetTree (HWND hWnd, HTREEITEM hItem, HKEY *pRoot, TCHAR *pszKey,
INT nMax) {
TV_ITEM tvi;
TCHAR szName[256];
HTREEITEM hParent;
HWND hwndTV = GetDlgItem (hWnd, ...
4
votes
1answer
827 views
Routing audio from GSM module to a Bluetooth HandsFree device
I have a system with the following setup:
I use:
Windows CE 6 R3
Microsoft's Bluetooth stack including all profiles
Motorola H500
The Audio Gateway service is up and running (checked through ...
4
votes
2answers
125 views
Compact Framework targeting
If a smart device project is set to target CF 2.0, Windows CE 5.0, should this same application run on Windows Mobile 6 with CF 3.5 installed?
I was able to install it (the CF 2 app), but when ...
4
votes
2answers
496 views
Render ASP in pages with .html extension in Windows CE
I want to be able to use the .html extension to render ASP pages.
I am using Windows CE 6 at the moment with the default web server, ASP
is turned on.
My registry key looks like ...
4
votes
3answers
527 views
What are the requirements for running .net application on windows ce5?
What are the requirements for running .net framework targeted application on Windows CE 5?
If I try to start an application that I developed for Windows Mobile 6, I will get the following error.
...
4
votes
1answer
342 views
From web programming to embedded systems (Windows CE), best learning path?
(tl;dr: What's the best learning path to go from PHP/Python web development to application development for Windows CE?)
I'm a self-taught programmer, and I tend to learn by starting from the goal and ...
4
votes
6answers
667 views
Is it possible to run my Windows Form application in Windows CE platform?
I am new in Windows CE development and never done it yet. Need some advise from the expert in here.
In our current project, we are developing a client-server application. The client side is using a ...
4
votes
2answers
248 views
Determine screen color depth/monochrome in .NET compact framework 2.0?
I'm using the .NET CF 2.0 on multiple devices which have different display capabilities (specifically color/monochrome) that I'd like to determine at run-time but can't find any methods that provide ...