浏览代码

modified palgtool.pl to include avr/pgmspace.h to language_all

PavelSindler 7 年之前
父节点
当前提交
baeeb733e9
共有 3 个文件被更改,包括 4 次插入2 次删除
  1. 2 1
      Firmware/langtool.pl
  2. 1 1
      Firmware/language_all.cpp
  3. 1 0
      Firmware/language_all.h

+ 2 - 1
Firmware/langtool.pl

@@ -180,6 +180,7 @@ print $fh <<END
 #ifndef LANGUAGE_ALL_H
 #define LANGUAGE_ALL_H
 
+#include <avr/pgmspace.h>
 // Language indices into their particular symbol tables.
 END
 ;
@@ -242,7 +243,7 @@ $filename = 'language_all.cpp';
 open($fh, '>', $filename) or die "Could not open file '$filename' $!";
 
 print $fh <<'END'
-#include <avr/pgmspace.h>
+
 #include "Configuration_prusa.h"
 #include "language_all.h"
 

+ 1 - 1
Firmware/language_all.cpp

@@ -1,4 +1,4 @@
-#include <avr/pgmspace.h>
+
 #include "Configuration_prusa.h"
 #include "language_all.h"
 

+ 1 - 0
Firmware/language_all.h

@@ -1,6 +1,7 @@
 #ifndef LANGUAGE_ALL_H
 #define LANGUAGE_ALL_H
 
+#include <avr/pgmspace.h>
 // Language indices into their particular symbol tables.
 #define LANG_ID_EN 0
 #define LANG_ID_CZ 1