mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-12-15 06:51:40 +00:00
624986d423
The current Marlin implementation relies on a timer interrupt to start the ADC conversion and read it. However in some circumstances the interrupt can be delayed resulting in insufficient time being available for the ADC conversion. This results in a bad reading and false temperature fluctuations. These changes make sure that the conversion is complete (by checking the ADC hardware via the HAL) before reading a value. See: https://github.com/MarlinFirmware/Marlin/issues/11323 |
||
---|---|---|
.. | ||
EEPROM_Emul | ||
EmulatedEeprom.cpp | ||
endstop_interrupts.h | ||
fastio_STM32F7.h | ||
HAL_Servo_STM32F7.cpp | ||
HAL_Servo_STM32F7.h | ||
HAL_spi_STM32F7.cpp | ||
HAL_timers_STM32F7.cpp | ||
HAL_timers_STM32F7.h | ||
HAL.cpp | ||
HAL.h | ||
persistent_store_impl.cpp | ||
pinsDebug.h | ||
README.md | ||
SanityCheck.h | ||
spi_pins.h | ||
TMC2660.cpp | ||
TMC2660.h | ||
watchdog_STM32F7.cpp | ||
watchdog_STM32F7.h |
This HAL is for the STM32F765 board "The Borg" used with STM32Generic Arduino core by danieleff.
Original core is located at:
https://github.com/danieleff/STM32GENERIC
but i have not committed the changes needed for the Borg there yet, so please use:
https://github.com/Spawn32/STM32GENERIC
Unzip it into [Arduino]/hardware folder
Download the latest GNU ARM Embedded Toolchain:
https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads
(The one in Arduino dosen't support STM32F7).
Change compiler.path in platform.txt to point to that you downloaded.
This HAL is in development.
Currently only tested on "The Borg".
You will also need the latest Arduino 1.9.0-beta or newer.
This HAL is a modified version of Chris Barr's Picoprint STM32F4 HAL, so shouldn't be to hard to get it to work on a F4.