Merge pull request #123 from dresco/stm32h7

Add definition for STM32H743xx series processors

Thanks, I will add a link to your repo.

The chip shortage is getting crazy - I was lucky to get a few Nucleo F411 boards after frying the one I had...
This commit is contained in:
Terje Io
2022-03-09 20:07:03 +01:00
committed by GitHub

View File

@@ -21,7 +21,7 @@
#pragma once
#if defined(STM32F103xB) || defined(STM32F103xE) || defined(STM32F401xC) || defined(STM32F401xE) || defined(STM32F407xx) || defined(STM32F411xE) || defined(STM32F446xx) || defined(STM32F756xx)
#if defined(STM32F103xB) || defined(STM32F103xE) || defined(STM32F401xC) || defined(STM32F401xE) || defined(STM32F407xx) || defined(STM32F411xE) || defined(STM32F446xx) || defined(STM32F756xx) || defined(STM32H743xx)
#define STM32_PLATFORM
#endif