diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-05-02 08:15:34 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-05-02 08:15:34 +0000 |
commit | 51069d7c81a2320ffd487e5788e6bc48ede3f11a (patch) | |
tree | 1e98244dbcb3d2abc5ed6d8957dc278615633e1c /testhal | |
parent | 11ecb1a7586ddaf6276a087d51de829b00d5f386 (diff) | |
download | ChibiOS-51069d7c81a2320ffd487e5788e6bc48ede3f11a.tar.gz ChibiOS-51069d7c81a2320ffd487e5788e6bc48ede3f11a.tar.bz2 ChibiOS-51069d7c81a2320ffd487e5788e6bc48ede3f11a.zip |
FlexPWM driver naming adjustments.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5652 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal')
-rw-r--r-- | testhal/SPC560Pxx/PWM-ICU/main.c | 2 | ||||
-rw-r--r-- | testhal/SPC56ELxx/PWM-ICU/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testhal/SPC560Pxx/PWM-ICU/main.c b/testhal/SPC560Pxx/PWM-ICU/main.c index eb12cda0e..31ef444ee 100644 --- a/testhal/SPC560Pxx/PWM-ICU/main.c +++ b/testhal/SPC560Pxx/PWM-ICU/main.c @@ -37,7 +37,7 @@ static PWMConfig pwmcfg = { {PWM_OUTPUT_ACTIVE_HIGH, pwmc1cb},
{PWM_OUTPUT_DISABLED, NULL}
},
- EDGE_ALIGNED_PWM
+ PWM_ALIGN_EDGE
};
icucnt_t last_width, last_period;
diff --git a/testhal/SPC56ELxx/PWM-ICU/main.c b/testhal/SPC56ELxx/PWM-ICU/main.c index 65e2435be..e6ac6281f 100644 --- a/testhal/SPC56ELxx/PWM-ICU/main.c +++ b/testhal/SPC56ELxx/PWM-ICU/main.c @@ -37,7 +37,7 @@ static PWMConfig pwmcfg = { {PWM_OUTPUT_ACTIVE_HIGH, pwmc1cb},
{PWM_OUTPUT_DISABLED, NULL}
},
- EDGE_ALIGNED_PWM
+ PWM_ALIGN_EDGE
};
icucnt_t last_width, last_period;
|