Again, it looks like you are getting non standard characters in your programs. Use 'od' to check the contents. The program file can only consist of regular character (a-z, 0-9, and some punctuation characters).
Also, make sure the editor you are using isn't generating a UNICODE text file. Unicode uses 2 data bytes to represent a single character. If you run 'od' on a UNICODE file you will get this... fra...@workshoppc:~/src$ od -a test.txt 0000000 del ~ T nul h nul i nul s nul sp nul i nul s nul 0000020 sp nul a nul sp nul t nul e nul s nul t nul 0000036 If you post the file (or part of it) as an attachment, we can tell you exactly what is wrong. If you copy and paste the contents of the file into your email program, these special characters get removed, and we can't see the problem. Frank > -----Original Message----- > From: [email protected] [mailto:[email protected]] > Sent: Tuesday, 30 June 2009 2:05 PM > To: Enhanced Machine Controller (EMC) > Subject: [Emc-users] Bad character'\37777777757' used > > hi > every time i load new program i am getting new error. > now i have that one > near line 2 of/.................. > Bad character'\37777777757' used > > here is first lines > > % > > N2G90 > > G55X0Y0Z0 > > N4 G0 Z0.25001 > > N5 X17.41802 Y37.36987 > > N6 G1 Z-0.12328 F7.3 > > N7 Z-0.14828 F2.7 > > N8 X17.24044 Y36.61335 F3.7 > > N9 X17.09375 Y35.1536 > > N10 X17.08518 Y36.73141 > > thanks > aram > > > -------------------------------------------------------------- > ---------------- > _______________________________________________ > Emc-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/emc-users > ------------------------------------------------------------------------------ _______________________________________________ Emc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-users
