diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-15 06:51:20 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-15 06:51:20 +0000 |
commit | a47f5705d3f6abf4abaffa949f7bb50132507d94 (patch) | |
tree | 88441bfd980b5186b750a7775b9c60faf4e21b66 /os/hal/include/hal_pal.h | |
parent | cb725828056b9564ab5d723bd0738375a83c077c (diff) | |
download | ChibiOS-a47f5705d3f6abf4abaffa949f7bb50132507d94.tar.gz ChibiOS-a47f5705d3f6abf4abaffa949f7bb50132507d94.tar.bz2 ChibiOS-a47f5705d3f6abf4abaffa949f7bb50132507d94.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/rt5_dev_point1@10822 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include/hal_pal.h')
-rw-r--r-- | os/hal/include/hal_pal.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/os/hal/include/hal_pal.h b/os/hal/include/hal_pal.h index e2d85f0fe..fdf4e2586 100644 --- a/os/hal/include/hal_pal.h +++ b/os/hal/include/hal_pal.h @@ -1006,8 +1006,9 @@ extern "C" { void palSetLineCallbackI(ioline_t line, palcallback_t cb, void *arg);
#endif /* PAL_USE_CALLBACKS */
#if PAL_USE_WAIT || defined(__DOXYGEN__)
- msg_t palWaitPadTimeoutS(ioportid_t port, iopadid_t pad, systime_t timeout);
- msg_t palWaitLineTimeoutS(ioline_t line, systime_t timeout);
+ msg_t palWaitPadTimeoutS(ioportid_t port, iopadid_t pad,
+ sysinterval_t timeout);
+ msg_t palWaitLineTimeoutS(ioline_t line, sysinterval_t timeout);
#endif /* PAL_USE_WAIT */
#ifdef __cplusplus
}
|