Minor SPI fixes, systick_callback for STM32F1 HAL compatibility (#19565)

This commit is contained in:
Victor Oliveira
2020-10-01 22:52:42 -03:00
committed by Scott Lahteine
parent cf61562196
commit 348570fd68
3 changed files with 14 additions and 14 deletions

View File

@@ -177,3 +177,8 @@ uint16_t HAL_adc_get_result();
#define PLATFORM_M997_SUPPORT
void flashFirmware(const int16_t);
// Maple Compatibility
typedef void (*systickCallback_t)(void);
void systick_attach_callback(systickCallback_t cb);
void HAL_SYSTICK_Callback();