# This is the 1st commit message:
Add Support for ADIMLab Granty
# The commit message #2 will be skipped:
# Update Configuration.h
# The commit message #3 will be skipped:
# Add files via upload
#
# Add Support for ADIMLab Granty
# The commit message #4 will be skipped:
# Create Configuration.h
# The commit message #5 will be skipped:
# Delete Configuration.h
# The commit message #6 will be skipped:
# Create Test.h
# The commit message #7 will be skipped:
# Add files via upload
# The commit message #8 will be skipped:
# Delete Test.h
# The commit message #9 will be skipped:
# Delete Configuration.h
# The commit message #10 will be skipped:
# Delete Configuration_adv.h
# The commit message #11 will be skipped:
# Add files via upload
#
# Add ADIMLab Pins
# The commit message #12 will be skipped:
# Add files via upload
#
# Add Bootscreen
# The commit message #13 will be skipped:
# Update Configuration.h
#
# Add Bootscreen
# The commit message #14 will be skipped:
# Update pins.h
#
# Add ADIMLab Board
# The commit message #15 will be skipped:
# Update boards.h
#
# Add ADIMLab Granty
# The commit message #16 will be skipped:
# Update Makefile
#
# Add ADIMLab Granty
# The commit message #17 will be skipped:
# Update boards.h
# The commit message #18 will be skipped:
# Update Makefile
* Support new TMC library and 32-bit Archim board
- Added IS_MCU flag
- When IS_MCU flag is 1, AVR compiler will be used
- When IS_MCU flag is 0, ARM compiler will be used
- Added support for new TMC library
- Added support for a 32-bit Archim board, which could probably be used as a basis for other 32-bit boards.
* Fixed Makefile for Marlin 2.0 (#10255)
- Makefile now supports the new Marlin 2.0 directory hierarchy.
- RELOC_WORKAROUND is now automatically enabled based on avr-gcc version.
* Makefile support for U8glib and TMC2130Stepper
- Updated paths for oliver's U8glib 1.19.1
- Added option for teemuatlut's TMC2130Stepper 2.2.1
* Add Max7219 LED Matrix Debug Support
The Max7219 8x8 LED Matrix's are very helpful for debugging new code.
And for that matter, just trying to maximize printer settings without
causing stuttering.
The displays are very inexpensive (under $2.00 with shipping) and
provide a lot of help when trying to debug complicated code.
* Try to keep Makefile up to date.
ArduinoAddons has been removed from Marlin, remove any references to it.
Replace HARDWARE_SRC and HARDWARE_DIR with its expanded equivalents.
Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Instantiation of the static singleton instance thermalManager in general
requires locking, but we know its safe to do without.
Add -fno-threadsafe-statics to avoid using locking primitives, which
result in linking errors:
undefined reference to `__cxa_guard_acquire'
undefined reference to `__cxa_guard_release'
Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>