aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM32
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-11-29 13:37:19 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-11-29 13:37:19 +0000
commit937efbc9b64d9ac5c10136e8d1e4fb359a6bdda6 (patch)
treec4bdb12be1bd62a663e6046c1b7ef995c3199a9d /os/hal/platforms/STM32
parent03933a5925ac71e4662d6152fad2237377a532cd (diff)
downloadChibiOS-937efbc9b64d9ac5c10136e8d1e4fb359a6bdda6.tar.gz
ChibiOS-937efbc9b64d9ac5c10136e8d1e4fb359a6bdda6.tar.bz2
ChibiOS-937efbc9b64d9ac5c10136e8d1e4fb359a6bdda6.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1357 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32')
-rw-r--r--os/hal/platforms/STM32/hal_lld.c4
-rw-r--r--os/hal/platforms/STM32/pal_lld.h2
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