DCSIMG
Embedded - Asaf Shelly

Browse by Tags

Eastronics Compact 7 Session
Thursday, June 28, 2012 10:56 AM
Hopefully everyone attending enjoyed the session. You can find my presentation here: Windows Compact 7 - Asaf Shelly (Technical website: http://www.asyncop.com/ ; My Intel Blog: http://software.intel.com/en-us/blogs/author/asaf-shelly/ ) Read More...
המרחק בין מתכנת למתכנת אמבדד
Wednesday, February 29, 2012 11:05 AM
קודם כל חשוב לומר שאין קשר לסביבת הפיתוח, לתשתיות, לאוסף הכלים וה- API. שום קשר. בעולם מיקרוסופט יש לנו מספר מערכות הפעלה שונות שעליהן מפתחים, לרוב בעזרת Visual Studio: 1. Win32 API, User-Mode, C\++, C#, MFC, Java, וכד' 2. שרתים, Asp.Net, HPC, וכד' 3. Windows CE 4. Windows NT Kernel 5. WebBrowser, JavaScript, AJAX, וכד' למי ששואל את עצמו, הגרסאות... Read More...
Windows Embedded Compact 7 Book
Saturday, October 15, 2011 11:05 PM
If you are interested in Windows Embedded Compact 7 you should take a look at Avi Kcholi's new book " Pro Windows Embedded Compact 7: Producing Device Drivers ". Avi is the number one expert in Israel and is one of the leading figures world wide. Soon to be published, you can already find it on Amazon: http://www.amazon.com/Pro-Windows-Embedded... Read More...
by AsafShelly | with no comments
תגים:, ,
Interview @ Intel IDF
Saturday, October 15, 2011 10:59 PM
Hi All, This is the interview I gave Intel last month at the Intel Developers Forum in San Francisco. http://software.intel.com/en-us/videos/black-belt-developer-asaf-shelly-at-idf-2011/ It has a few hints to future innovations. Asaf Read More...
WES 2009 HORM Problem
Friday, February 25, 2011 1:22 AM
Windows Embedded Standard 2009, activating HORM (Hibernate Once Resume Many), xpepm.exe reported power manager cofiguration issue, fba.exe shut down the computer instead of hiberating it. Start by verifying that you can hibernate using Windows shut-down menu. Either you cannot hibernate because a driver does not support it (or is preventing it) or you need to... Read More...
by AsafShelly | with no comments
תגים:, ,
Windows Virtual PC Disk Compacting
Saturday, February 12, 2011 11:21 PM
Now that I have a new laptop (Windows 7) I am using my old laptop (Windows XP) as a Windows Virtual PC machine. It works faster than the old real machine but I had a problem with the disk space. The virtual machine is reporting that it is using 85GB of disk but the file size was actually 85GB on the host OS. When you turn off the virtual machine you can modify... Read More...
by AsafShelly | with no comments
תגים:, ,
WDK setup on Windows Embedded "unknown trust provider"
Thursday, February 10, 2011 3:01 PM
Hi All, I tried istalling my WDF based driver on Windows Embedded Standard 2009 and it failed. Dependency walker showed that my driver is missing the reference wdfldr.sys which is installed automatically with WDF's co-installer. Device Manager shows an unknown device under my device class and setup API identifies that a device with the class is installed... Read More...
by AsafShelly | with no comments
תגים:, , ,
Verify Installation of a custom device using C#
Tuesday, March 09, 2010 5:24 PM
Hi all, Using my WinUSB C# component, I also needed to automatically install the driver if it is not already installed. The INF file defines a new device class by its GUID. This means that the class does not exist on the machine if the device is not installed. Here is the code: [ DllImport ( "setupapi.dll" , SetLastError = true , CharSet = CharSet ... Read More...
Visual C++ Compiler ERROR C2016
Tuesday, December 29, 2009 5:58 PM
Compiling a C file with Visual Studio 2008 compiler I got this error: "error C2016: C requires that a struct or union has at least one member" I am writing this post because it is not documented, and C2016 on MSDN is defined as "A newline character was found before the closing single quotation mark of a character constant". Either it is not... Read More...
WinUSB .Net Component
Tuesday, December 29, 2009 9:43 AM
I have uploaded a WinUSB Component for .Net with full source code here: WinUSB .Net Component in C# . The component comes with full source code and has the following features: Read More...
WinUSB Read Problem
Tuesday, December 22, 2009 3:35 PM
Hi All, I have decided to move forward from my implementation of BulkUSB.sys driver to using the formal implementation called WinUSB. It is a package of a kernel driver and a user-mode API documented as part of the MSDN library. When I tried to do asynchronous reads I discovered two undocumented / confusing failures: The first is GetLastError returns 997 - ERROR_IO_PENDING... Read More...
by AsafShelly | with no comments
תגים:, ,
Parallel Computing Tutorial
Tuesday, December 22, 2009 11:18 AM
With some delay I am publishing a video about parallel programming. This tutorial is loaded with advanced concepts mainly dealing with parallel software design and architecture. As some of you may know I have presented "Parallel Programming for Embedded" TechEd 2009 Europe. This is the video. There are no code samples in this presentations because there... Read More...
TechEd 2009 Europe
Thursday, November 05, 2009 11:22 PM
Hi All, If you are coming to this year's TechEd in Europe let me know about it. You are also welcome to join my session on Friday titled "Parallel Programming for Embedded". The session covers parallel computing in general and in particular for embedded systems. The most important part is that it is using a language that infrastructure people can... Read More...
System Tray on Windows Embedded
Wednesday, March 18, 2009 6:47 PM
Hi all, This is a technical post about Windows Embedded Standard / Embedded Windows XP (Windows xpe) If tray icons are missing on explorer shell you need to have: Software : System : User Interface : Shells : Windows Shell : User Interface Core On component settings check Show Notifications on Task bar ( cmiShowNotifications to TRUE) This post was written with... Read More...