Firmware2/Marlin/src/HAL/HAL_STM32F1
Thomas Moore 9e699811d2 Make LPC1768 pinmapping not specific to Re-ARM (#8063)
* Merging early because of build failures.  See #8105

* Make LPC1768 pinmapping not specific to Re-ARM

* Add HAL_PIN_TYPE and LPC1768 pin features

* M43 Updates

* Move pin map into pinsDebug_LPC1768.h

* Incorporate comments and M226

* Fix persistent store compilation issues

* Update pin features

* Update MKS SBASE pins

* Use native LPC1768 pin numbers in M42, M43, and M226
2017-10-26 13:37:26 -05:00
..
endstop_interrupts.h STM32F1 HAL 2017-09-27 11:20:10 -05:00
fastio_Stm32f1.h STM32F1 HAL 2017-09-27 11:20:10 -05:00
HAL_Servo_Stm32f1.cpp STM32F1 HAL 2017-09-27 11:20:10 -05:00
HAL_Servo_Stm32f1.h STM32F1 HAL 2017-09-27 11:20:10 -05:00
HAL_spi_Stm32f1.cpp Relocate SPI.h to the HAL folder 2017-10-24 16:54:06 -05:00
HAL_Stm32f1.cpp STM32F1 HAL 2017-09-27 11:20:10 -05:00
HAL_Stm32f1.h Make LPC1768 pinmapping not specific to Re-ARM (#8063) 2017-10-26 13:37:26 -05:00
HAL_timers_Stm32f1.cpp Apply fixes for DUE 2017-10-07 14:31:18 -05:00
HAL_timers_Stm32f1.h Make LPC1768 pinmapping not specific to Re-ARM (#8063) 2017-10-26 13:37:26 -05:00
persistent_store_impl.cpp UBL able to generate mesh and save and load it on 32-bit platforms (#8015) 2017-10-18 14:00:29 -05:00
README.md STM32F1 HAL 2017-09-27 11:20:10 -05:00
SanityCheck_Stm32f1.h STM32F1 HAL 2017-09-27 11:20:10 -05:00
spi_pins.h STM32F1 HAL 2017-09-27 11:20:10 -05:00
watchdog_Stm32f1.cpp STM32F1 HAL 2017-09-27 11:20:10 -05:00
watchdog_Stm32f1.h STM32F1 HAL 2017-09-27 11:20:10 -05:00

This HAL is for STM32F103 boards used with libmaple/stm32duino Arduino core.

This HAL is in development and has not been tested with an actual printer.

The stm32 core needs a modification in the file util.h to avoid conflict with Marlin macros for Debug.

Since only 1 file needs change in the stm32duino core, it's preferable over making changes to Marlin.

After these lines: <> #else #define ASSERT_FAULT(exp) (void)((0)) #endif <>

Add the following 3 lines: <> #undef DEBUG_NONE #undef DEBUG_FAULT #undef DEBUG_ALL <>

Main developers:

Victorpv

Most up to date repository for this HAL:

https://github.com/victorpv/Marlin/tree/bugfix-2.0.x

PRs should be first sent to that fork, and once tested merged to Marlin bugfix-2.0.x branch.