Tool/software:
I know that I can do this manually, but was wondering if there was a more abstract way.
I have a couple different modes I'd like to run, lets say in one mode, i slowely sample all of the ADC inputs, and in other mode i make the ADC max speed, and use the fifo, and only focus on 1 input.
conceptually i could have 2 different sysconfig files for the 2 modes. then call the setup for either when i switch modes. is there a way this could be supported?
worst case i could make one sysconfig, then compile with it so it generates SYSCFG_DL_ADC12_0_init() in ti_msp_dl_config.c, then copy the contents into my own file and call it SYSCFG_DL_ADC12_0_init_fastmode() or something, and then make sure that all the defines needed are defined and non conflicting...
just curious if there was an easier way.