Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Esden-Tempski <piotr@esden.net>2013-06-13 06:11:22 +0400
committerPiotr Esden-Tempski <piotr@esden.net>2013-06-13 06:11:22 +0400
commit34de1e776e58f9a26fd082d8d92f1189497fd481 (patch)
tree49c92ea107488444d4925279af567baa06ad4a63 /include/libopencm3/stm32/common/timer_common_f24.h
parent7df63fcae0efa62f60f726b3878f1c93506647c3 (diff)
Changed to use stdint types.
Diffstat (limited to 'include/libopencm3/stm32/common/timer_common_f24.h')
-rw-r--r--include/libopencm3/stm32/common/timer_common_f24.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libopencm3/stm32/common/timer_common_f24.h b/include/libopencm3/stm32/common/timer_common_f24.h
index b929d564..bdde4f89 100644
--- a/include/libopencm3/stm32/common/timer_common_f24.h
+++ b/include/libopencm3/stm32/common/timer_common_f24.h
@@ -98,8 +98,8 @@ enum tim_ic_pol {
BEGIN_DECLS
-void timer_set_option(u32 timer_peripheral, u32 option);
-void timer_ic_set_polarity(u32 timer, enum tim_ic_id ic, enum tim_ic_pol pol);
+void timer_set_option(uint32_t timer_peripheral, uint32_t option);
+void timer_ic_set_polarity(uint32_t timer, enum tim_ic_id ic, enum tim_ic_pol pol);
END_DECLS