diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-03-16 17:37:21 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-03-16 17:56:54 -0400 |
commit | 4862d1eae5813e278cfbb1d5e0a040010b92eb3f (patch) | |
tree | b0771810e7d1da7d254375b4758128dce3793668 /examples | |
parent | 04ee498b46393250c31606e526c28cb3b2b870ed (diff) | |
download | librambutan-4862d1eae5813e278cfbb1d5e0a040010b92eb3f.tar.gz librambutan-4862d1eae5813e278cfbb1d5e0a040010b92eb3f.zip |
Maple RET6 edition support
Diffstat (limited to 'examples')
-rw-r--r-- | examples/test-session.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/examples/test-session.cpp b/examples/test-session.cpp index ea631ca..a147e06 100644 --- a/examples/test-session.cpp +++ b/examples/test-session.cpp @@ -20,7 +20,7 @@ int rate = 0; -#if defined(BOARD_maple) +#if defined(BOARD_maple) || defined(BOARD_maple_RET6) const uint8 pwm_pins[] = {0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 14, 24, 25, 27, 28}; const uint8 adc_pins[] = @@ -617,15 +617,14 @@ void init_all_timers(uint16 prescale) { timer_init(TIMER4, prescale); #ifdef STM32_HIGH_DENSITY timer_init(TIMER5, prescale); - timer_init(TIMER6, prescale); - timer_init(TIMER7, prescale); + // timer_init(TIMER6, prescale); + // timer_init(TIMER7, prescale); timer_init(TIMER8, prescale); #endif } - // Force init to be called *first*, i.e. before static object allocation. -// Otherwise, statically allocated object that need libmaple may fail. +// Otherwise, statically allocated objects that need libmaple may fail. __attribute__(( constructor )) void premain() { init(); } |