hi,
i am facing a problem in keil IDE . The problem is when i try to download the program or erase the program using keil says " could not initialize the target device please power cycle the board and try again" and "flash download failed target DLL cancelled" this error occured when i was working SYSCTL_RCC_R register ...Before that the stellaris kit and keil is working fine....
#include"clock.h"
int main(void){ SYSCTL_RCC_R = SYSCTL_RCC_BYPASS ; //BYPASS PLL SYSCTL_RCC_R = SYSCTL_RCC_XTAL_6MHZ | SYSCTL_RCC_OSCSRC_MAIN; //6MHZ, MAIN OSC(EXTERNAL CRYS SELECTED) SYSCTL_RCC_R = SYSCTL_RCC_PWRDN |SYSCTL_RCC_USESYSDIV; //POWER DOWN BIT SET SYSCTL_RCC_R = SYSCTL_RCC_SYSDIV_2; while(!( SYSCTL_RIS_R && SYSCTL_RIS_PLLLRIS)); SYSCTL_RCC_R = SYSCTL_RCC_R & (~SYSCTL_RCC_BYPASS) ; return 0;}
.....