• __inline keyword
    Hi, Is the __inline keyword supported in C166 V4.27 ? If so can anybody point me in the direction of any documentation ? My code complies with this keyword in but,on looking at the generated code...
  • __inline keyword
    Hi, Is the __inline keyword supported in C166 V4.27 ? If so can anybody point me in the direction of any documentation ? My code complies with this keyword in but,on looking at the generated code...
  • get compiler warning if unsigned variable is assigned with a signed value
    Can I get a compiler warning if I accidentaly assign a signed int to an unsigned int variable ? eg: unsigned int ui_par = 0 ; signed int si_par = -1 ; Normally I would write something like...
  • get compiler warning if unsigned variable is assigned with a signed value
    Can I get a compiler warning if I accidentaly assign a signed int to an unsigned int variable ? eg: unsigned int ui_par = 0 ; signed int si_par = -1 ; Normally I would write something like...
  • A166 and percent signs
    I am generating text strings for an LCD display using a DB command. POSTF_TXT: DB 'SELF TEST FAILED', 0x0A, 0x0D But I want to embed a percent symbol in the string like TXT: DB 'bias level 10...