I'm working on a MSP430AFE253 using IAR 5.20.1, my question is how to use this 2 registers:
Mohamed Fakhfakhmy question is how to use this 2 registers:
My AFE datasheet doesn't mention the SD24CONF0 register at all, and teh SD24CONF1 register is marked as "reserved (internal)" in the peripheral file map. So it is not meant for being accessed by application code.
_____________________________________Before posting bug reports or ask for help, do at least quick scan over this article. It applies to any kind of problem reporting. On any forum. And/or look here.If you cannot discuss your problem in the public, feel free to start a private conversation: click on my name and then 'start conversation'. But please do so only if you really cannot do it in a public thread, as I usually read all threads. And I prefer to answer where others can profit from it (or contribute to it) too.
thanks for the answer,
the SD24CONF0 is deleted due to an update, using IAR 5.20.1, in DEMO code I found this:
#define SD24CONF0_FUDGE 0x70 #define SD24CONF1_FUDGE 0x38
#if defined(SD24CONF0_FUDGE) SD24CONF0 = SD24CONF0_FUDGE; /* Tweaks recommended by Freising */ #endif #if defined(SD24CONF1_FUDGE) SD24CONF1 = SD24CONF1_FUDGE; #endif
I'm so confused, if it is reserved, why would they change it?
Maybe a leftover from experimental silicon. Maybe a tweak that's now fixed part of the CPU startup code.
The registers aren't described in the users guide and in the datasheet, only one of them is mentioned, and as reserved. So I wouldn't bother noticing them. If they were in a previous version of users guide or datasheet and have been deleted, then for a reason. It's rather unusual that changes in datasheets were made on accident.