diff options
author | Dave Hylands <dhylands@gmail.com> | 2014-08-20 13:21:11 -0700 |
---|---|---|
committer | Dave Hylands <dhylands@gmail.com> | 2014-09-19 09:26:13 -0700 |
commit | becbc87fd73c98664b472b4a06c2b54558dd5669 (patch) | |
tree | 44b1e1daaab750fa2c10899bc9c3489ab4ec738f /stmhal/timer.h | |
parent | 2842945e760c98793cb0c62a66345ab8850afc1a (diff) | |
download | micropython-becbc87fd73c98664b472b4a06c2b54558dd5669.tar.gz micropython-becbc87fd73c98664b472b4a06c2b54558dd5669.zip |
Add Timer support (PWM, OC, IC) for stmhal and teensy
Diffstat (limited to 'stmhal/timer.h')
-rw-r--r-- | stmhal/timer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stmhal/timer.h b/stmhal/timer.h index 2a892db285..c737ee7635 100644 --- a/stmhal/timer.h +++ b/stmhal/timer.h @@ -34,6 +34,7 @@ extern TIM_HandleTypeDef TIM5_Handle; extern TIM_HandleTypeDef TIM6_Handle; extern const mp_obj_type_t pyb_timer_type; +extern const mp_obj_type_t pyb_timer_channel_type; void timer_init0(void); void timer_tim3_init(void); |