0

I have code written for Atmega64 , with "ICCV7 for AVR" (C Cross Compiler for the Atmel AVR),

I can also open and edit it with sourceInsight,

but when I open it with text editor (the most common one on Windows), it is all garbled.

What can I do ?

Thanks a lot in advance.

Julia Chen
  • 3
  • 1
  • 2

1 Answers1

0

Probably because your code file is stored in unix format, which uses "\n" as return at the end of each line. But notepad in windows uses "\r\n" as return. So in notepad, all the code may display in a single line.

PS: try to tag your Q with other tags. 'icc' here means Intel C++ Compiler.

kangshiyin
  • 9,681
  • 1
  • 17
  • 29