Generator Update on June 20th

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Generator Update on June 20th

nxf47831
NXP Employee
NXP Employee
1 0 862

New features update:

  •  SDKGEN-982Support adding all folder content recursively

        Generator now supports adding all files and all files of its subfolders under some directory recursively with wildcard.

        How to use:

              source: middleware/lwip/contrib/apps/LwipMibCompiler/**
        The other supported wildcard usages:

source: middleware/lwip/contrib/apps/LwipMibCompiler/*.*
Means all files with extension under middleware/lwip/contrib/apps/LwipMibCompiler will be added.

source: middleware/lwip/contrib/apps/LwipMibCompiler/*
Means all files without extension under middleware/lwip/contrib/apps/LwipMibCompiler will be added.

source: middleware/lwip/contrib/apps/LwipMibCompiler/*.txt
Means all files with .txt extension under middleware/lwip/contrib/apps/LwipMibCompiler will be added.

         Related description can also be found in section wildcard in Yml data record guide.md

 

  •  SDKGEN-1053Enable "Update Target before Debugging" option for mdk

        The "Update Target Before Debugging" option downloads your program to target hardware only when your project          changes. This option does not run initialization script files until after your target program downloads.
        To enable or disable this option, a tag named update-before-debug should be set in yml.
        Besides, to make this setting effective, .uvoptx template file must be provided.
        Here is a yml example:

                   1.png

        And this setting will show as below:
1.png

 

  •  SDKGEN-1004Support to configure preprocessed linker scripts for mcux

        For mcux, generator support to configure user specific linker scripts which is generated by prebuild command.
        To use the feature, a tag named "preprocessed" need to be added for source file, which means the file generated            after being preprocessed.
        Here is an example:

1.png

       And this setting will show as below:

1.png