K series problem after problem

Coding and general discussion relating to the compiler

Moderators: David Barker, Jerry Messina

Post Reply
skartalov
Posts: 37
Joined: Fri Apr 09, 2010 10:50 am
Location: BULGARIA

K series problem after problem

Post by skartalov » Fri Feb 22, 2013 2:26 pm

Recently I started to use K- series PICs, especially PIC18F25k20

The compiller generates error, only when I include the "eeprom.bas", before even I start to use some commands, it opens system.bas and says:


// define macros that use the appropriate config statement for the current device
// these can be used in place of 'config WDT' or 'config WDTEN'
#if (_USE_WDTEN)
Public macro CONFIG_WDT_ON() <--------------HANGS HERE! with SYMBOL NOT EXPECTED error
Config WDTEN = on
End macro
Public macro CONFIG_WDT_OFF()
Config WDTEN = off
End macro
Public macro CONFIG_WDT(x)
.
.




Seems like there are a lot of issues with this series!
What to do?

Post Reply