• code is not entering to main function
    hi sir, i am trying to implement a code on stm32f103 board using keil microvision4 in c.sir the problem i am getting is the code not entering the main().it is getting stuck at one address: 0x08001534...
  • LPC2294
    I would like to simulate UART feature on keil. #include <lpc22xx.h> void main(void) { PINSEL0 = 0x1; VPBDIV = 0x11; U0LCR = 0x8F; U0TER = 0x00; U0FCR = 0x01; U0THR = 1; U0FDR = 0x10;...
  • Does Not enter main while debugging
    Hi All, I am using STM32 ARM cortex controller.I use UIlink debugger I am new to controller programming. I have written a program which sets one of the GPIO Pin. The program compiles with no errors...
  • in debug mode, won't enter main()
    Hello, I am looking for some help with my Keil uVision 5.27. I am able to run some example code for my chip that I downloaded from NXP. I have 0 errors and 0 warnings. I am able to go into the debug...
  • Not able to enter into ISR even after interrupt is generated in LPC2294
    Dear Sir, The following code is working fine in simulator mode, when TC is matching with MR0 interrupt is getting generated and the control is moving to timer1 ISR. If the same code if it is...