VSM simple code not working

Berny

Member
I am attempting to run a simple schematic using a picaxe 18m without success. The code compiles in the program editor but I get a syntax error in VSM. If I comment out the #picaxe 18m2 then the error becomes the second file attached. If I change picaxe 18m2 to picaxe 18m then I also get the error in the second attached file. I'm sure it's something simple but I am not seeing it.

Also, whenever I place any object in the schematic, I get a message that "No PCB package or ARES PCB libraries not installed". I checked the "key" files and the keys are in place. The key file was issued Thursday, 20-Jan-2011 at 11:57:54 AM.
I cannot however find my mail message with the key file.

Code:
#picaxe 18m2
symbol rst = pinc.1

main:
if rst = 0 then
   high b.0
   pause 1000
   low b.0
end if
goto main:
VSMerror.jpg VSMerror2.jpg
 

Technical

Technical Support
Staff member
For 18M just use 'pin1' rather than 'pinC.1' and 'high 0' instead of 'high b.0'

ARES is the PCB software, we'll check why that msg is appearing.
 

Berny

Member
That worked ... thought I had tried that .. guess not ... senility is a terrible thing:( Thanks for the help!
 
Top