Description
This TCL command allows the user to select the FlashPro express mode: Operator mode or Developer mode. Operator mode is the current default mode. Developer mode allows to update jobs before running programming.
Note: This TCL command will error out if there is an open job. The user has to close open jobs (or have close_project TCL command in the TCL script) before running this command.
set_fpexpress_mode [-mode {operator|developer}]
Arguments
Parameter | Type | Description |
---|
mode | string | Specify FlashPro express mode. The possible value for this argument are: - operator_mode - FlashPro Express mode is set to operator mode.
- developer_mode - FlashPro Express mode is set to developer mode.
|
Return Type | Description |
---|
None | None |
Error Codes
Error Code | Description |
---|
None | Required parameter 'mode' is missing. |
None | Parameter 'param_name' is not defined. Valid command formatting is 'set_fpexpress_mode -mode "operator_mode | developer_mode"'. |
None | mode: Invalid argument value: ''(expecting operator_mode or developer_mode). |
Example
This example sets FlashPro express mode as "developer_mode":
set_fpexpress_mode -mode {developer_mode}