Community
Participate
Working Groups
Build Identifier: A customer was looking at the configuration for an example application in XGCONF. The configuration script created three Tasks, but only one was shown in XGCONF. This was due to an error in the application configuration script, with three tasks created, but referenced with a single var: var myTask = Task.create('&mTaskFxn', taskParams); var myTask = Task.create('&mTaskFxn2', taskParams); var myTask = Task.create('&mTaskFxn3', taskParams); In this situation it would be nice to have some sort of error or warning message from XGCONF. Reproducible: Always Steps to Reproduce: 1. Open any SYS/BIOS application .cfg file that creates a Task. 2. Add a second Task creation using the same var for the Task handle. 3. Note that the XGCONF graphical view only shows a single Task.