diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-07-17 13:07:16 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-07-17 13:07:16 +0000 |
commit | 18cdd66003490ad5ed54a66840a9787aea09b334 (patch) | |
tree | 96ce4e1cb58754f52a809989a3da151bb31a97b4 /os/hal/platforms/MSP430 | |
parent | 2e5abeebad5e94989f62e05582028f02c5e71dda (diff) | |
download | ChibiOS-18cdd66003490ad5ed54a66840a9787aea09b334.tar.gz ChibiOS-18cdd66003490ad5ed54a66840a9787aea09b334.tar.bz2 ChibiOS-18cdd66003490ad5ed54a66840a9787aea09b334.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3162 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/MSP430')
-rw-r--r-- | os/hal/platforms/MSP430/pal_lld.c | 2 | ||||
-rw-r--r-- | os/hal/platforms/MSP430/pal_lld.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/platforms/MSP430/pal_lld.c b/os/hal/platforms/MSP430/pal_lld.c index 073a6af93..aef4d986a 100644 --- a/os/hal/platforms/MSP430/pal_lld.c +++ b/os/hal/platforms/MSP430/pal_lld.c @@ -121,7 +121,7 @@ void _pal_lld_init(const PALConfig *config) { */
void _pal_lld_setgroupmode(ioportid_t port,
ioportmask_t mask,
- uint_fast8_t mode) {
+ iomode_t mode) {
switch (mode) {
case PAL_MODE_RESET:
diff --git a/os/hal/platforms/MSP430/pal_lld.h b/os/hal/platforms/MSP430/pal_lld.h index 1c0bc5900..282ed4e75 100644 --- a/os/hal/platforms/MSP430/pal_lld.h +++ b/os/hal/platforms/MSP430/pal_lld.h @@ -288,7 +288,7 @@ extern "C" { void _pal_lld_init(const PALConfig *config);
void _pal_lld_setgroupmode(ioportid_t port,
ioportmask_t mask,
- uint_fast8_t mode);
+ iomode_t mode);
#ifdef __cplusplus
}
#endif
|