Part Number: TMS320F280049
Other Parts Discussed in Thread: C2000WARE
Dear champs,
I am asking this for our customers.
The user wants to disable the on-chip BOR and needs to set VMONCTL/BORLVMONDIS.
We notice this bit is described in the Table 12-10 of F28004x TRM, but it seems it is still not yet available in the corresponding bit-field header files "F28004x_analogsubsys.h" and driverlib.
Would you please check if it is available?
If not, would you please update it in the next release of the header files and driverlib?
We will need an API like
static void ASysCtl_disableBOR (void)
For the time being, can we just directly modify it like this?
///////////////////
Uint16 *VMONCTL_reg = 0x0005D770;
EALLOW;
*VMONCTL_reg = 0x0100;
EDIS;
///////////////////
Or any other suggestion?
Wayne Huang