• Warning: L6320W: Ignoring --keep command. Cannot find argument '--summary_stderr'.
    I recently switched to uVision 5 (from 4) and added a generic I/O pin class to a project I inherited, and then proceeded to use the class like I've done in many other projects. Unfortunately, when I...
  • 8051 linking EROR: "L6320w" reset_handler
    hi, im an 8051 noob and trying to run this example program supplied by ARM for students; AREA eval_proj, CODE ENTRY LDR r1, =0x03FF5008 ; r1 = IOPDATA address LDR r3, [r1] ; r3 = memory[IOPDATA...
  • Reset_Handler at 0x26C
    In startup.s file When hovering the mouse over Reset_Handler I see 0x26C. Where this number came from? The MCU is Cortex m4. Thanks
  • cannot access memory and cannot entry debug mode
    i write a short program into my mcu then i cause keil cant not write program again always shows cannot access memory and cannot entry debug mode, it not cause by hardware i sure, two board with same...
  • why would a function call Reset_Handler PROC
    I have a simple struct. typedef struct { void (*write)(void); char (*request)(OBD_device*); } OBD_carMake; and a call to a function like so carMake->request(device); It was working fine...