Other Parts Discussed in Thread: UCD3138
On some CCS versions, the PFC firmware provided for the UCD3138 family EVM may not create a .x0 file. If this happens, you need to:
1. Right Click on the project name
2. Click on Show Build Settings
3. Click on Build
4. Click on the Steps tab - If the Steps Tab doesn't appear, click on the little arrows to the right of the tabs to find it.
5. replace the text under Post-build steps with this:
"${CG_TOOL_HEX}.exe" -x "${BuildArtifactFileName}" -o "${BuildArtifactFileBaseName}.x0" -memwidth 8
If you have already built the code, you will have to do Project->Clean to make it recompile. You should now get your .x0 file. It will appear in the folder with the device name. This folder will be in the folder where the main project code is found.
Note that if you are compiling for more than one device, you will have to change the post build command for each device - they are separate.