• Determine memory usage of C functions
    Hi there, I have a fixed assembly code that I am not allowed to touch. This code potentially utilizes the whole internal memory of my processor. For some reasons I now have to extend this assembly...
  • Code works in Simulator but not actual Hardware
    Hi My code works in Keil simulator but not on actual LPC2294 Evaluation board. I don't have any debbuger to check this. What could be the possible reasons?
  • Simulated code resets, actual code does not
    Hi, I have just started using the Keil Development tools. I created a timer example that should toggle a port pin, approx every half second. With a generic 8051 it works. When I convert the code to...
  • Usage of DATA, PDATA and XDATA simultaneously
    Hello, is it possible to write a program with the small-memory-model, to declare some variables as xdata and to declare an char array[256] of pdata? Best regards, Stefan
  • How to determine a pointer type?
    If I have declare a generic pointer [char *test] in C; How do I determine the pointer type in runtime? By checking the first byte of the pointer or is there any other functions doing this? Thanks...