Contenu principal

setAllTasks

R2026b

Enable all tasks in workflow

Description

setAllTasks(hWC) enables all workflow tasks in the hdlcoder.WorkflowConfig object, hWC.

If you do not want to enable each task individually, use this function. For example, to run all tasks but one, run setAllTasks, then disable the task that you want to skip.

example

Examples

collapse all

  • Create a workflow configuration object and enable all tasks. Then disable only the task you want to skip.

    hWC = hdlcoder.WorkflowConfig(SynthesisTool="Xilinx Vivado",TargetWorkflow="Generic ASIC/FPGA");
    setAllTasks(hWC);
    hWC.RunTaskAnnotateModelWithSynthesisResult = false;

Input Arguments

collapse all

HDL code generation and deployment workflow configuration, specified as an hdlcoder.WorkflowConfig object.

Version History

Introduced in R2015b