aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/multi/PAL
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-09-02 12:46:59 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-09-02 12:46:59 +0000
commitf63698059e6f5ae4b7a050af57ad2fe5cb0e50b8 (patch)
treede850960ebda4c581331cd6a38ee62f6cd85a5cc /testhal/STM32/multi/PAL
parent98c5f5d19cb2595a5a7859e125c587e4a04f3011 (diff)
downloadChibiOS-f63698059e6f5ae4b7a050af57ad2fe5cb0e50b8.tar.gz
ChibiOS-f63698059e6f5ae4b7a050af57ad2fe5cb0e50b8.tar.bz2
ChibiOS-f63698059e6f5ae4b7a050af57ad2fe5cb0e50b8.zip
Fixed some comments.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10530 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/multi/PAL')
-rw-r--r--testhal/STM32/multi/PAL/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32/multi/PAL/main.c b/testhal/STM32/multi/PAL/main.c
index 26cdcae70..597e8274d 100644
--- a/testhal/STM32/multi/PAL/main.c
+++ b/testhal/STM32/multi/PAL/main.c
@@ -62,7 +62,7 @@ int main(void) {
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
#endif
- /* Enabling callback on both edges of the button line.*/
+ /* Enabling events on both edges of the button line.*/
palEnableLineEvent(PORTAB_LINE_BUTTON, PAL_EVENT_MODE_BOTH_EDGES,
NULL, NULL);
@@ -131,7 +131,7 @@ int main(void) {
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
#endif
- /* Enabling callback on both edges of the button line.*/
+ /* Enabling events on both edges of the button line.*/
palEnableLineEvent(PORTAB_LINE_BUTTON, PAL_EVENT_MODE_BOTH_EDGES,
button_cb, NULL);