diff options
Diffstat (limited to 'os/hal/platforms/STM32')
-rw-r--r-- | os/hal/platforms/STM32/hal_lld.c | 4 | ||||
-rw-r--r-- | os/hal/platforms/STM32/pal_lld.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/os/hal/platforms/STM32/hal_lld.c b/os/hal/platforms/STM32/hal_lld.c index cce126c8e..7a096070e 100644 --- a/os/hal/platforms/STM32/hal_lld.c +++ b/os/hal/platforms/STM32/hal_lld.c @@ -24,8 +24,8 @@ * @{
*/
-#include <ch.h>
-#include <hal.h>
+#include "ch.h"
+#include "hal.h"
#define AIRCR_VECTKEY 0x05FA0000
diff --git a/os/hal/platforms/STM32/pal_lld.h b/os/hal/platforms/STM32/pal_lld.h index a9cb04a81..2b21880db 100644 --- a/os/hal/platforms/STM32/pal_lld.h +++ b/os/hal/platforms/STM32/pal_lld.h @@ -281,6 +281,8 @@ typedef GPIO_TypeDef * ioportid_t; */
#define pal_lld_writepad(port, pad, bit) pal_lld_writegroup(port, 1, pad, bit)
+extern const STM32GPIOConfig pal_default_config;
+
#ifdef __cplusplus
extern "C" {
#endif
|