Hello,
Dear Sir,
This is Pratik Debnath Sr. R&D Engineer..I am started working on Msp432p401R..I have accessed each and every peripheral by Mspware by importing it also I have seen the example of OUTOFBOX demo...Everything is fine...
But the problem is whenever I try to create a new ccs msp432 project and paste the mspware examples to modify it it build properly but in the development board it is not working..A rom folder generates and it is excluded from build..I know that we use map driverlib Api functions so I include Rom folder to build but then the build fails...
Please correct me where is the problem...Nd what is the solution of creating my own CCS Msp432 project and pasting the mspware examples...
One thing I have noticed that my code is going in a fault condition in infinite while..
/* This is the code that gets called when the processor receives an unexpected */
/* interrupt. This simply enters an infinite loop, preserving the system state */
/* for examination by a debugger. */
static void defaultISR(void)
{
/* Fault trap exempt from ULP advisor */
#pragma diag_push
#pragma CHECK_ULP("-2.1")
/* Enter an infinite loop. */
while(1)
{
}
#pragma diag_pop
}
THE Code I have pased from mspware is Systick interrupt..