• Two different functions but with the same name in separate libraries
    I have two libraries, named a.lib and b.lib. Both libraries have a function char test(void), but return different characters. a.c (a.lib) char test(void); char test(void) { return 'a'; } b.c (b...
  • Two different functions but with the same name in separate libraries
    I have two libraries, named a.lib and b.lib. Both libraries have a function char test(void), but return different characters. a.c (a.lib) char test(void); char test(void) { return 'a'; } b.c (b...
  • The ADuc812 is programmed but the ADuC831 is not in the same sheme
    The ADuc812 is programmed but the ADuC831 is not in the same sheme. What can be wrong by programming ADuc831 instead of ADuC812? The sheme is the same. Maybe proble with the old version of dounloader...
  • The ADuc812 is programmed but the ADuC831 is not in the same sheme
    The ADuc812 is programmed but the ADuC831 is not in the same sheme. What can be wrong by programming ADuc831 instead of ADuC812? The sheme is the same. Maybe proble with the old version of dounloader...
  • Different Optimization Levels in same program
    Is it possible to use different optimization levels in the same program. This is because 2 functions in the program give error on assembling the .src file at level 6 and work correctly at level 3 whereas...