extruder/config.h.dist: add fallbacks for non-Makefile compilation.
This commit is contained in:
parent
6e9dd81fb7
commit
f9842d1d90
|
|
@ -1,6 +1,19 @@
|
||||||
#ifndef _CONFIG_H
|
#ifndef _CONFIG_H
|
||||||
#define _CONFIG_H
|
#define _CONFIG_H
|
||||||
|
|
||||||
|
/*
|
||||||
|
CPU clock rate
|
||||||
|
*/
|
||||||
|
#ifndef F_CPU
|
||||||
|
#define F_CPU 16000000L
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
other fallbacks for the Arduino IDE
|
||||||
|
*/
|
||||||
|
#define EXTRUDER
|
||||||
|
#define GEN3
|
||||||
|
|
||||||
#include "arduino.h"
|
#include "arduino.h"
|
||||||
|
|
||||||
// controller index- bus is multidrop after all
|
// controller index- bus is multidrop after all
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue