Skip to content

Commit

Permalink
Adding in new include into every directory to get projects with no dr…
Browse files Browse the repository at this point in the history
…ivers to build
  • Loading branch information
nwdepatie committed May 31, 2024
1 parent 26e3746 commit 41a8f00
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions platforms/stm32f405/include/stm32xx_hal.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#ifndef STM32XX_HAL_H
#define STM32XX_HAL_H

#ifdef STM32F405xx
#include "stm32f4xx_hal.h"
#endif

#ifdef STM32H745xx
#include "stm32h7xx_hal.h"
#endif

#ifdef STM32G431xx
#include "stm32g4xx_hal.h"
#endif

#endif /* STM32XX_HAL_H*/
16 changes: 16 additions & 0 deletions platforms/stm32g431/include/stm32xx_hal.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#ifndef STM32XX_HAL_H
#define STM32XX_HAL_H

#ifdef STM32F405xx
#include "stm32f4xx_hal.h"
#endif

#ifdef STM32H745xx
#include "stm32h7xx_hal.h"
#endif

#ifdef STM32G431xx
#include "stm32g4xx_hal.h"
#endif

#endif /* STM32XX_HAL_H*/

0 comments on commit 41a8f00

Please sign in to comment.