2019-03-04 04:45:33 -08:00
# if defined(CORE_STM32_GENERIC) && !defined(ARDUINO_BLACK_F407VE)
# include "board_stm32_generic.h"
2019-01-22 20:20:14 -08:00
# include "globals.h"
# include "auxiliaries.h"
# include "idle.h"
# include "scheduler.h"
2019-02-23 06:35:06 -08:00
# include "HardwareTimer.h"
2019-03-02 20:43:43 -08:00
# if defined(ARDUINO_ARCH_STM32) && defined(STM32_CORE_VERSION)
//These should really be in the stm32 libmaple libs, but for somereason they only have timers 1-4
2019-02-23 06:35:06 -08:00
# include <stm32_TIM_variant_11.h>
HardwareTimer Timer5 ( TIM5 , chip_tim5 , sizeof ( chip_tim5 ) / sizeof ( chip_tim5 [ 0 ] ) ) ;
HardwareTimer Timer8 ( TIM8 , chip_tim8 , sizeof ( chip_tim8 ) / sizeof ( chip_tim8 [ 0 ] ) ) ;
2019-01-25 23:34:20 -08:00
# endif
2019-02-20 13:46:10 -08:00
2019-01-19 19:13:24 -08:00
void initBoard ( )
{
2019-01-21 13:56:25 -08:00
/*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* General
*/
2019-03-02 20:43:43 -08:00
# ifndef FLASH_LENGTH
# define FLASH_LENGTH 8192
# endif
delay ( 10 ) ;
2019-01-21 15:04:21 -08:00
/*
2019-01-21 13:56:25 -08:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Idle
*/
if ( ( configPage6 . iacAlgorithm = = IAC_ALGORITHM_PWM_OL ) | | ( configPage6 . iacAlgorithm = = IAC_ALGORITHM_PWM_CL ) )
{
idle_pwm_max_count = 1000000L / ( configPage6 . idleFreq * 2 ) ; //Converts the frequency in Hz to the number of ticks (at 2uS) it takes to complete 1 cycle. Note that the frequency is divided by 2 coming from TS to allow for up to 5KHz
}
//This must happen at the end of the idle init
2019-02-23 06:35:06 -08:00
Timer1 . setMode ( 4 , TIMER_OUTPUT_COMPARE ) ;
2019-01-25 23:34:20 -08:00
//timer_set_mode(TIMER1, 4, TIMER_OUTPUT_COMPARE;
2019-03-02 20:43:43 -08:00
if ( idle_pwm_max_count > 0 ) { Timer1 . attachInterrupt ( 4 , idleInterrupt ) ; } //on first flash the configPage4.iacAlgorithm is invalid
2019-01-21 13:56:25 -08:00
2019-01-21 15:04:21 -08:00
/*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Timers
*/
# if defined(ARDUINO_BLACK_F407VE) || defined(STM32F4) || defined(_STM32F4_)
2019-02-23 06:35:06 -08:00
Timer8 . setPeriod ( 1000 ) ; // Set up period
Timer8 . setMode ( 1 , TIMER_OUTPUT_COMPARE ) ;
Timer8 . attachInterrupt ( 1 , oneMSInterval ) ;
Timer8 . resume ( ) ; //Start Timer
2019-01-21 15:04:21 -08:00
# else
Timer4 . setPeriod ( 1000 ) ; // Set up period
Timer4 . setMode ( 1 , TIMER_OUTPUT_COMPARE ) ;
Timer4 . attachInterrupt ( 1 , oneMSInterval ) ;
Timer4 . resume ( ) ; //Start Timer
# endif
pinMode ( LED_BUILTIN , OUTPUT ) ; //Visual WDT
2019-01-22 15:04:54 -08:00
/*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Auxilliaries
*/
//2uS resolution Min 8Hz, Max 5KHz
boost_pwm_max_count = 1000000L / ( 2 * configPage6 . boostFreq * 2 ) ; //Converts the frequency in Hz to the number of ticks (at 2uS) it takes to complete 1 cycle. The x2 is there because the frequency is stored at half value (in a byte) to allow freqneucies up to 511Hz
vvt_pwm_max_count = 1000000L / ( 2 * configPage6 . vvtFreq * 2 ) ; //Converts the frequency in Hz to the number of ticks (at 2uS) it takes to complete 1 cycle
2019-01-21 15:04:21 -08:00
2019-01-25 23:34:20 -08:00
//Need to be initialised last due to instant interrupt
2019-02-23 06:35:06 -08:00
Timer1 . setMode ( 2 , TIMER_OUTPUT_COMPARE ) ;
Timer1 . setMode ( 3 , TIMER_OUTPUT_COMPARE ) ;
if ( boost_pwm_max_count > 0 ) { Timer1 . attachInterrupt ( 2 , boostInterrupt ) ; }
if ( vvt_pwm_max_count > 0 ) { Timer1 . attachInterrupt ( 3 , vvtInterrupt ) ; }
/*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Schedules
*/
2019-03-02 20:43:43 -08:00
# if defined (STM32F1) || defined(__STM32F1__)
//(CYCLES_PER_MICROSECOND == 72, APB2 at 72MHz, APB1 at 36MHz).
//Timer2 to 4 is on APB1, Timer1 on APB2. http://www.st.com/resource/en/datasheet/stm32f103cb.pdf sheet 12
Timer1 . setPrescaleFactor ( ( 72 * 2 ) - 1 ) ; //2us resolution
Timer2 . setPrescaleFactor ( ( 36 * 2 ) - 1 ) ; //2us resolution
Timer3 . setPrescaleFactor ( ( 36 * 2 ) - 1 ) ; //2us resolution
# elif defined(STM32F4)
//(CYCLES_PER_MICROSECOND == 168, APB2 at 84MHz, APB1 at 42MHz).
//Timer2 to 14 is on APB1, Timers 1, 8, 9 and 10 on APB2. http://www.st.com/resource/en/datasheet/stm32f407vg.pdf sheet 120
Timer1 . setPrescaleFactor ( ( 168 * 2 ) - 1 ) ; //2us resolution
Timer2 . setPrescaleFactor ( ( 84 * 2 ) - 1 ) ; //2us resolution
Timer3 . setPrescaleFactor ( ( 84 * 2 ) - 1 ) ; //2us resolution
2019-02-23 06:35:06 -08:00
# endif
Timer2 . setMode ( 1 , TIMER_OUTPUT_COMPARE ) ;
Timer2 . setMode ( 2 , TIMER_OUTPUT_COMPARE ) ;
Timer2 . setMode ( 3 , TIMER_OUTPUT_COMPARE ) ;
Timer2 . setMode ( 4 , TIMER_OUTPUT_COMPARE ) ;
Timer3 . setMode ( 1 , TIMER_OUTPUT_COMPARE ) ;
Timer3 . setMode ( 2 , TIMER_OUTPUT_COMPARE ) ;
Timer3 . setMode ( 3 , TIMER_OUTPUT_COMPARE ) ;
Timer3 . setMode ( 4 , TIMER_OUTPUT_COMPARE ) ;
Timer1 . setMode ( 1 , TIMER_OUTPUT_COMPARE ) ;
2019-01-26 13:56:27 -08:00
//Attach interupt functions
//Injection
2019-02-23 06:35:06 -08:00
Timer2 . attachInterrupt ( 1 , fuelSchedule1Interrupt ) ;
Timer2 . attachInterrupt ( 2 , fuelSchedule2Interrupt ) ;
Timer2 . attachInterrupt ( 3 , fuelSchedule3Interrupt ) ;
Timer2 . attachInterrupt ( 4 , fuelSchedule4Interrupt ) ;
2019-01-26 13:56:27 -08:00
# if (INJ_CHANNELS >= 5)
2019-03-02 20:43:43 -08:00
Timer5 . setMode ( 1 , TIMER_OUTPUT_COMPARE ) ;
2019-02-23 06:35:06 -08:00
Timer5 . attachInterrupt ( 1 , fuelSchedule5Interrupt ) ;
2019-01-26 13:56:27 -08:00
# endif
# if (INJ_CHANNELS >= 6)
2019-03-02 20:43:43 -08:00
Timer5 . setMode ( 2 , TIMER_OUTPUT_COMPARE ) ;
2019-02-23 06:35:06 -08:00
Timer5 . attachInterrupt ( 2 , fuelSchedule6Interrupt ) ;
2019-01-26 13:56:27 -08:00
# endif
# if (INJ_CHANNELS >= 7)
2019-03-02 20:43:43 -08:00
Timer5 . setMode ( 3 , TIMER_OUTPUT_COMPARE ) ;
2019-02-23 06:35:06 -08:00
Timer5 . attachInterrupt ( 3 , fuelSchedule7Interrupt ) ;
2019-01-26 13:56:27 -08:00
# endif
# if (INJ_CHANNELS >= 8)
2019-03-02 20:43:43 -08:00
Timer5 . setMode ( 4 , TIMER_OUTPUT_COMPARE ) ;
2019-02-23 06:35:06 -08:00
Timer5 . attachInterrupt ( 4 , fuelSchedule8Interrupt ) ;
2019-01-26 13:56:27 -08:00
# endif
2019-01-21 13:56:25 -08:00
2019-02-23 06:35:06 -08:00
//Ignition
Timer3 . attachInterrupt ( 1 , ignitionSchedule1Interrupt ) ;
Timer3 . attachInterrupt ( 2 , ignitionSchedule2Interrupt ) ;
Timer3 . attachInterrupt ( 3 , ignitionSchedule3Interrupt ) ;
Timer3 . attachInterrupt ( 4 , ignitionSchedule4Interrupt ) ;
2019-01-21 13:56:25 -08:00
# if (IGN_CHANNELS >= 5)
2019-03-02 20:43:43 -08:00
Timer4 . setMode ( 1 , TIMER_OUTPUT_COMPARE ) ;
2019-02-23 06:35:06 -08:00
Timer4 . attachInterrupt ( 1 , ignitionSchedule5Interrupt ) ;
2019-01-26 13:56:27 -08:00
# endif
# if (IGN_CHANNELS >= 6)
2019-03-02 20:43:43 -08:00
Timer4 . setMode ( 2 , TIMER_OUTPUT_COMPARE ) ;
2019-02-23 06:35:06 -08:00
Timer4 . attachInterrupt ( 2 , ignitionSchedule6Interrupt ) ;
2019-01-26 13:56:27 -08:00
# endif
# if (IGN_CHANNELS >= 7)
2019-03-02 20:43:43 -08:00
Timer4 . setMode ( 3 , TIMER_OUTPUT_COMPARE ) ;
2019-02-23 06:35:06 -08:00
Timer4 . attachInterrupt ( 3 , ignitionSchedule7Interrupt ) ;
2019-01-26 13:56:27 -08:00
# endif
# if (IGN_CHANNELS >= 8)
2019-03-02 20:43:43 -08:00
Timer4 . setMode ( 4 , TIMER_OUTPUT_COMPARE ) ;
2019-02-23 06:35:06 -08:00
Timer4 . attachInterrupt ( 4 , ignitionSchedule8Interrupt ) ;
2019-01-21 13:56:25 -08:00
# endif
2019-03-02 20:43:43 -08:00
Timer1 . setOverflow ( 0xFFFF ) ;
2019-02-23 06:35:06 -08:00
Timer1 . resume ( ) ;
2019-03-02 20:43:43 -08:00
Timer2 . setOverflow ( 0xFFFF ) ;
2019-02-23 06:35:06 -08:00
Timer2 . resume ( ) ;
2019-03-02 20:43:43 -08:00
Timer3 . setOverflow ( 0xFFFF ) ;
2019-02-23 06:35:06 -08:00
Timer3 . resume ( ) ;
# if (IGN_CHANNELS >= 5)
2019-03-02 20:43:43 -08:00
Timer4 . setOverflow ( 0xFFFF ) ;
2019-02-23 06:35:06 -08:00
Timer4 . resume ( ) ;
# endif
# if (INJ_CHANNELS >= 5)
2019-03-02 20:43:43 -08:00
Timer5 . setOverflow ( 0xFFFF ) ;
2019-02-23 06:35:06 -08:00
Timer5 . resume ( ) ;
# endif
2019-01-21 13:56:25 -08:00
}
uint16_t freeRam ( )
{
char top = ' t ' ;
return & top - reinterpret_cast < char * > ( sbrk ( 0 ) ) ;
2019-01-19 19:13:24 -08:00
}
2019-02-20 08:21:16 -08:00
2019-02-23 06:35:06 -08:00
# endif