Installation Manual
Windows Configuration
Intel® Edison
September 2014 Quick Start Guide
Document Number: EQSG-ww29 Intel Confidential 13
.\flashall.bat –b
3. When the script starts to search for the Edison, connect the micro USB cable to the inner Micro USB port as
shown in Figure 6, and connect the power supply afterwards. If the flashing does not start, unplug both
cables, reinsert the microUSB cable, and then reconnect the power supply.
4. After the flashing starts, allow the script to completely run and do not interrupt.
5. After flashing, the board will reboot a couple of times and partition the file system. Do not interrupt this
operation, it should last approximately 30 seconds or so.
Figure 6 Intel® Edison board
3.4 Cross-compile “hello world”
To build a native application in a Windows environment, do the following:
1. Unzip the edison-sdk-win32-weekly-14.zip file to a directory of your choice.
/* Hello World program */
#include<stdio.h>
main()
{
printf("Hello World\n");
}
2. If you extracted the zip archive to the C:\ drive, the command to build helloworld.c would be this:
C:\edison-sdk-win32-weekly-14\poky-edison-eglibc-i686-edison-image-core2-32-
toolchain-1.6\sysroots\i686-pokysdk-mingw32\usr\bin\i586-poky-linux\i586-poky-
linux-gcc.exe --sysroot=C:\edison-sdk-win32-weekly-14\poky-edison-eglibc-i686-
edison-image-core2-32-toolchain-1.6\sysroots\core2-32-poky-linux
c:\test\helloworld.c -o c:\test\helloworld
§










