diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2021-12-05 23:49:26 -0600 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2021-12-10 12:00:26 -0500 |
commit | 762af872d2f2c977e51d6e51b8c3ad622485cc05 (patch) | |
tree | 0fd44fe4996b04a82c5c0cc46178b5893d3ae1c0 /watch-library/hpl | |
parent | 316e1f292c603885f2af3dcd69ce797d64776425 (diff) | |
download | Sensor-Watch-762af872d2f2c977e51d6e51b8c3ad622485cc05.tar.gz Sensor-Watch-762af872d2f2c977e51d6e51b8c3ad622485cc05.tar.bz2 Sensor-Watch-762af872d2f2c977e51d6e51b8c3ad622485cc05.zip |
fix missing prototype warnings
Diffstat (limited to 'watch-library/hpl')
-rw-r--r-- | watch-library/hpl/core/hpl_core_port.h | 2 | ||||
-rw-r--r-- | watch-library/hpl/gclk/hpl_gclk.c | 1 | ||||
-rw-r--r-- | watch-library/hpl/mclk/hpl_mclk.c | 1 | ||||
-rw-r--r-- | watch-library/hpl/systick/hpl_systick.c | 1 |
4 files changed, 5 insertions, 0 deletions
diff --git a/watch-library/hpl/core/hpl_core_port.h b/watch-library/hpl/core/hpl_core_port.h index 3f3e8f28..33c18dd0 100644 --- a/watch-library/hpl/core/hpl_core_port.h +++ b/watch-library/hpl/core/hpl_core_port.h @@ -58,4 +58,6 @@ static inline bool _is_in_isr(void) #endif /* !(defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__)) */ +void Default_Handler(void); + #endif /* _HPL_CORE_PORT_H_INCLUDED */ diff --git a/watch-library/hpl/gclk/hpl_gclk.c b/watch-library/hpl/gclk/hpl_gclk.c index 86451165..be66ef77 100644 --- a/watch-library/hpl/gclk/hpl_gclk.c +++ b/watch-library/hpl/gclk/hpl_gclk.c @@ -33,6 +33,7 @@ */ #include <hpl_gclk_config.h> +#include <hpl_gclk_base.h> #include <hpl_init.h> #include <utils_assert.h> diff --git a/watch-library/hpl/mclk/hpl_mclk.c b/watch-library/hpl/mclk/hpl_mclk.c index 2ada7561..46e7c853 100644 --- a/watch-library/hpl/mclk/hpl_mclk.c +++ b/watch-library/hpl/mclk/hpl_mclk.c @@ -33,6 +33,7 @@ #include <compiler.h> #include <hpl_mclk_config.h> +#include <hpl_init.h> /** * \brief Initialize master clock generator diff --git a/watch-library/hpl/systick/hpl_systick.c b/watch-library/hpl/systick/hpl_systick.c index 3caf6746..c2f3b29e 100644 --- a/watch-library/hpl/systick/hpl_systick.c +++ b/watch-library/hpl/systick/hpl_systick.c @@ -34,6 +34,7 @@ #include <hpl_time_measure.h> #include <hpl_systick_config.h> +#include <hpl_delay.h> /** * \brief Initialize system time module |