visual-studio-2012,windows-embedded-compact
Using Windows Embedded Compact 2013 (WEC2013) it's impossible to develop a Net CF 3.9 application without an SDK. There isn't a default SDK. In general, when you have an embedded system, it isn't general purpose but it has specific features that the OEM exposes with a custom SDK. In this...
windows-embedded-compact,windows-embedded,windows-embedded-8,windows-embedded-8.1
I got it installed. The ISO was: en_windows_embedded_compact_2013_update_5_x86_and_x64_dvd_4083417.iso It would not install without Platform Builder (which I don't need) - it is not enabled on setup unless Application Builder (separate download) is previously installed. Without Application Builder, Platform Builder and a couple of other components have red "X" icon next...
c++,silverlight,visual-studio-2012,windows-embedded-compact,blend-2012
I was not able to accomplish this without a mouse click - but I used SendInput to synthesize a mouse click so the user doesn't have to. HRESULT MainPage::OnLoaded(__in IXRDependencyObject* pRoot) { UNREFERENCED_PARAMETER(pRoot); HRESULT hr = InitializeComponent(); if (FAILED(hr)) { goto Error; } if (m_pLogin) { m_pLogin->AddLoadedEventHandler(CreateDelegate(this, &MainPage::Login_Loaded)); m_pLogin->AddMouseLeftButtonUpEventHandler(CreateDelegate(this, &MainPage::Login_MouseLeftButtonUp));...
bluetooth,embedded,windows-ce,windows-embedded-compact,hci
It all got to do with SSP(Secured Simple Pairing), which decides the pairing authentication model. This is affected in WEC8(2013) through the changes under bthsettings. Under WEC8 they disable SSP(via function EnbaleSSP()) whenever a connection is initiated from external device and enable back SSP when conenction is initiated internally....
embedded,windows-ce,windows-embedded-compact
It is solved. Stored dwReserved1 twice (each with parity bit, as it is written only once at sector initialization). Stored wReserved2 three times (as parity bit can't be applied here - flash filesystem writes to wReserved2 three times without erasing the sector, i.e. flipping single bits). If 2 copies are...
c#,.net-3.5,windows-mobile-6.5,windows-embedded-compact
List<T> has an internal array, with a certain capacity which is always equal to or greater than the number of items on the list. list.Capacity >= list.Count You can actually tell the list what capacity its internal array should be created with. new List<int>(capacity: 5); When an item is inserted,...
c++,memory-management,memory-address,virtual-memory,windows-embedded-compact
I'm not an expert in WinCE programming, but below are some thoughts: It seems that this function is used to map a pointer accessible in program code (virtual address) to some device registers (physical address). In embedded programming such approach is used to directly drive a device (e.g. light a...