Adapt G26 to work for all meshes

This commit is contained in:
Scott Lahteine
2017-11-23 17:59:43 -06:00
parent 5ce7f23afa
commit c6b0c104bb
20 changed files with 661 additions and 727 deletions

View File

@ -20,8 +20,8 @@
*
*/
#ifndef MARLIN_CONFIG_H
#define MARLIN_CONFIG_H
#ifndef _MARLIN_CONFIG_H_
#define _MARLIN_CONFIG_H_
#include "MarlinConfigPre.h"
@ -36,8 +36,7 @@
// Include all core headers
#include "../core/enum.h"
#include "../core/language.h"
#include "../core/types.h"
#include "../core/utility.h"
#include "../core/serial.h"
#endif // MARLIN_CONFIG_H
#endif // _MARLIN_CONFIG_H_

View File

@ -20,8 +20,8 @@
*
*/
#ifndef MARLIN_CONFIGPRE_H
#define MARLIN_CONFIGPRE_H
#ifndef _MARLIN_CONFIGPRE_H_
#define _MARLIN_CONFIGPRE_H_
#include "../core/boards.h"
#include "../core/macros.h"
@ -31,4 +31,6 @@
#include "../../Configuration_adv.h"
#include "Conditionals_adv.h"
#endif // MARLIN_CONFIGPRE_H
#include "../core/types.h"
#endif // _MARLIN_CONFIGPRE_H_