• multiple REG51.H includes
    Hello, I'm new in KEIL sw. As I can see I can include REG51.h file in only one C or ASM file in the whole project... is that possible? Best regards, Branislava
  • How avoid multiple includes of one file
    Hi I've split my project in 2 parts while each part is implemented by one. So some includes like <reg51.h> is done twice which resulted in error. So in order to avoid this I did as follows: #if ...
  • Connecting to multiple cores with command line debugger?
    I am working on using the ARM debugger (DS-5) to automate loading of binaries, etc. for running some tests. My system is heterogenous with multiple Cortex-R5 and some other ARM cores. I am interested...
  • $include?
    if i have configuration: ... VAR: DS 1 ... and,i include it in one .asm file $include (confi.inc) when i assemble them, msg show: Program Size: data=30.0 xdata=0 code=101 and,i include...
  • help #include
    a.h: struct A { int a; }; b.h: struct B { struct A ba; }; c.c: #include "a.h" #include "b.h" </prev> compiler complains struct A in file b.h is undefined. I would think that by include a.h before...