This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
Let's take the device as the AM5718 for sake of example. I'd like to write a script that outputs a file (e.g. csv file) containing all of the pin muxing selections for a given device. I see that CCS has the ability to decode all these registers. For example, let's look at CTRL_CORE_PAD_GPMC_AD0 at address 0x4A003400. Is there any way for me to be able to get access to the decoded register data via DSS?
Sorry, I wasn't clear. My example was more general example of accessing a defined field in the register (I used GPMC_AD0_WAKEUPEVENT arbitrarily).
I see you want to access GPMC_AD0_MUXMODE specifically. So you would want to be able to do something like:
var val = ds.memory.readRegister("CTRL_MODULE_CORE_CTRL_CORE_PAD_GPMC_AD0_GPMC_AD0_MUXMODE");
where val would be the value GPMC_AD0_MUXMODE
I don't think you can drill down to this level with the readRegister command. I'll confirm this
ki