You can add an application to your OS design and then configure the registry to run the application when your run-time image boots.
By doing so, you can decrease the amount of time involved in debugging an application. Otherwise, after your run-time image boots, you must manually load and run the application on your target device.
Note This procedure requires you to have already created an application. For information about creating and building an application in the context of using Platform Builder with a CEPC, see Tutorial: Building a Run-Time Image for a CEPC.
To track your progress, select the check box next to each step.
Step
Topic
1. Open an existing OS design, or create a new one, and then build and download the run-time image to a target device.
2. Use the Remote Registry Editor to discover the HKEY_LOCAL_MACHINE/Init launch numbers for each .exe file that runs on the target device at startup.
To run your application at startup, assign launch numbers to your application's .exe files in the HKEY_LOCAL_MACHINE/Init section of the registry of the target device.
Connect to your target device using the Remote Registry Editor.
If the connection fails, see Configuring the Connection to a Target Device Using Platform Manager.
In the Windows CE Remote Registry Editor window, expand the Default Device node, then the HKEY_LOCAL_MACHINE node, and then the Init node.
In the right pane, in the Name column, note the launch number for each application.
These numbers use the launchnn format, where nn is the launch number.
Opening Remote Registry Editor
Connecting to a Target Device with a Remote Tool
3. Add the application to your OS design as a project.
6. Configure a connection between your development workstation and your target device.
Note Debugging is not necessary at this point.
If your target device is a CEPC, boot your run-time image on the CEPC.
For more information, see How to Configure and Download a Run-Time Image to a CEPC.
If your target device is the Emulator, download your run-time image to the Emulator.
For more information, see Downloading a Run-Time Image to the Emulator.
Configuring a Connection for Downloading and Debugging
7. When the download process is complete, verify that the application launched properly on your target device.
The time required to display the OS depends on the size of the downloaded run-time image.
Not applicable
Configuring a Registry File to Run an Application at Startup
You can configure a registry (.reg) file to run a module when your run-time image starts up. There are two ways to configure registry files:
Modify the registry file before building and downloading the run-time image.
Use the Remote Registry Editor after downloading the run-time image to the device.
Using the Remote Registry Editor changes the run-time image registry, but the changes are not persisted to the registry files in Platform Builder. The next time you download the run-time image, you must configure the registry again.
For more information, see Remote Registry Editor.
To modify a registry file in the IDE
From the Workspace window, choose the ParameterView tab at the bottom of the window.
Expand the nodes until you find the folder for the target device you have chosen.
For example, if you create an OS design for the Emulator, find the Emulator folder.
Expand the folder and then expand the Project Specific Files folder.
Select and open the appropriate registry file.
Typically, this is the Project.reg file. Settings in Project.reg override other registry settings due to the order in which the build system processes the registry files.
Update or add the HKEY_LOCAL_MACHINE/Init section of the registry file with the following code.
The following table shows descriptions of the parameters in the code you must update or add to the HKEY_LOCAL_MACHINE/Init section of the registry file.
Parameter
Description
launchnn
Defines the order that the module is started in, where nn is 00–99.
Enclose this parameter in double quotation marks (" ").
defined_module_name
Specifies the name of the module to be started.
Enclose this parameter in double quotation marks (" ").
dependnn
Optional. Assigns a dependency that prevents the defined module from starting until another module is started, where nn is 00–99.
Enclose this parameter in double quotation marks (" ").
hex:xx,yy...
Defines the hexadecimal number of the module that must be run before the defined module is run.
This parameter consists of the hex keyword, a colon, and one or more hexadecimal numbers, one for each byte of hexadecimal data.
After your run-time image calls a module using the Init registry value, the application must call the SignalStarted function.
SignalStarted indicates that the module is ready for the rest of the OS to continue processing.
The value passed as the parameter to SignalStarted is the value passed on the command line of the module started from the Init key.
If you do not know the hexadecimal numbers for the module dependencies that your application requires, open and search Common.reg for the module names.
The following code example shows how to set your module to depend on the standard initialization modules, which include Filesys.exe, Gwes.exe, Device.exe, and Explorer.exe.