Cleanup, hex formatting, includes

This commit is contained in:
Scott Lahteine
2021-05-05 06:32:54 -05:00
parent d174d610bd
commit db90a180c2
12 changed files with 25 additions and 24 deletions

View File

@ -21,15 +21,12 @@
*/
#pragma once
#include <stdint.h>
#include "../../inc/MarlinConfig.h"
// ------------------------
// Defines
// ------------------------
#define FORCE_INLINE __attribute__((always_inline)) inline
// STM32 timers may be 16 or 32 bit. Limiting HAL_TIMER_TYPE_MAX to 16 bits
// avoids issues with STM32F0 MCUs, which seem to pause timers if UINT32_MAX
// is written to the register. STM32F4 timers do not manifest this issue,