• ARM Assembly code running continuously
    I am new to assembly language programming and tried running the following MOV and ADD program in Keil uvision 4.03 AREA ARMex, CODE, READONLY ; Name this block of code ARMex ENTRY ; Mark first...
  • ARM Assembly code running continuously
    I am new to assembly language programming and tried running the following MOV and ADD program in Keil uvision 4.03 AREA ARMex, CODE, READONLY ; Name this block of code ARMex ENTRY ; Mark first...
  • I2C program runs in an infinite loop even without a loop
    Evaluation Board: MCB2300 Microcontroller: LPC2388 IDE: uVision V4.03q My Setup: ============ 1. I interfaced a 2-Wire Serial EEPROM (2K) to LPC2388. 2. I am using I2C0 on this board. 3...
  • I2C program runs in an infinite loop even without a loop
    Evaluation Board: MCB2300 Microcontroller: LPC2388 IDE: uVision V4.03q My Setup: ============ 1. I interfaced a 2-Wire Serial EEPROM (2K) to LPC2388. 2. I am using I2C0 on this board. 3...
  • why can't the Loop states and multi-dimensions arrays run?
    Hi, 1. In my programme,there are some loop states such as the following: int x,x1,x2; x1=1;x2=100; for(x=x1;x<=x2;x++) { y=k*x+b; Pixel(x, y, Mode); } But in fact,the loop is executed...