Description
This Tcl command opens FlashPro Express project (*.pro) that was created in FPExpress.
open_project -project {path and name of the project file} \
[-connect_programmers value]
Arguments
| Parameter | Type | Description | 
|---|
| project | string | Specify the path of the FPExpress project with extension *.pro. Project path should include the complete path to the *.pro file. If you do not provide the full path, FlashPro Express infers that you want to open the project from your current working directory. | 
| connect_programmers | boolean | Valid values are: TRUE, true, 1, FALSE. false or 0. This is optional. Default is 1. | 
| Return Type | Description | 
|---|
| None | None | 
Error Codes
| Error Code | Description | 
|---|
| None | Required parameter 'project' is missing. | 
Example
This command opens the 'FPPrj1.pro' project from the FPProject1 directory:
open_project -project {./FPProject1/FPPrj1.pro} -connect_programmers 1