|
@@ -86,8 +86,24 @@
|
86
|
86
|
* Many thanks to Hans Raaf (@oderwat) for developing the Anet-specific software and supporting the Anet community.
|
87
|
87
|
*/
|
88
|
88
|
|
|
89
|
+/**
|
|
90
|
+ * OptiBoot Bootloader:
|
|
91
|
+ * Optiboot is an alternative bootloader that can be flashed on the board to free up space for a larger firmware build.
|
|
92
|
+ * See https://github.com/Optiboot/optiboot for more information.
|
|
93
|
+ *
|
|
94
|
+ * Install Marlin with Arduino IDE:
|
|
95
|
+ * For a board with the stock bootloader, select 'Sanguino' in 'Tools > Board' and 'ATmega1284P' in 'Tools > Processor.'
|
|
96
|
+ * For a board with OptiBoot, select 'Sanguino (Optiboot)' in 'Tools > Board' and 'ATmega1284P' in 'Tools > Processor.'
|
|
97
|
+ *
|
|
98
|
+ * Install Marlin with PlatformIO IDE:
|
|
99
|
+ * (NOTE: You can set a default build environment by editing the value of 'default_env' in 'platformio.ini'.
|
|
100
|
+ * For the best user experience install the "Auto Build Marlin" extension.)
|
|
101
|
+ * For a board with the stock bootloader use Build / Upload under the 'sanguino1284p' or 'sanguino1284p_optimized' target.
|
|
102
|
+ * For a board with OptiBoot, use Build / Upload under the 'melzi_optiboot' target.
|
|
103
|
+ */
|
|
104
|
+
|
89
|
105
|
#if NOT_TARGET(__AVR_ATmega1284P__)
|
90
|
|
- #error "Oops! Select 'Sanguino' in 'Tools > Board' and 'ATmega1284P' in 'Tools > Processor.' (For PlatformIO, use 'melzi' or 'melzi_optiboot.')"
|
|
106
|
+ #error "Oops! Select 'Sanguino' in 'Tools > Board' and 'ATmega1284P' in 'Tools > Processor.' (For PlatformIO, use 'sanguino1284p' or 'sanguino1284p_optimized'. With optiboot, use 'melzi_optiboot.')"
|
91
|
107
|
#endif
|
92
|
108
|
|
93
|
109
|
#define BOARD_INFO_NAME "Anet 1.0"
|