264 lines
12 KiB
C++
264 lines
12 KiB
C++
#if defined(CORE_TEENSY)
|
|
#include "board_teensy35.h"
|
|
#include "globals.h"
|
|
#include "auxiliaries.h"
|
|
#include "idle.h"
|
|
#include "scheduler.h"
|
|
|
|
|
|
void initBoard()
|
|
{
|
|
/*
|
|
***********************************************************************************************************
|
|
* General
|
|
*/
|
|
|
|
/*
|
|
***********************************************************************************************************
|
|
* Idle
|
|
*/
|
|
if( (configPage6.iacAlgorithm == IAC_ALGORITHM_PWM_OL) || (configPage6.iacAlgorithm == IAC_ALGORITHM_PWM_CL) )
|
|
{
|
|
//FlexTimer 2, compare channel 0 is used for idle
|
|
FTM2_MODE |= FTM_MODE_WPDIS; // Write Protection Disable
|
|
FTM2_MODE |= FTM_MODE_FTMEN; //Flex Timer module enable
|
|
FTM2_MODE |= FTM_MODE_INIT;
|
|
|
|
FTM2_SC = 0x00; // Set this to zero before changing the modulus
|
|
FTM2_CNTIN = 0x0000; //Shouldn't be needed, but just in case
|
|
FTM2_CNT = 0x0000; // Reset the count to zero
|
|
FTM2_MOD = 0xFFFF; // max modulus = 65535
|
|
|
|
/*
|
|
* Enable the clock for FTM0/1
|
|
* 00 No clock selected. Disables the FTM counter.
|
|
* 01 System clock
|
|
* 10 Fixed frequency clock (32kHz)
|
|
* 11 External clock
|
|
*/
|
|
FTM2_SC |= FTM_SC_CLKS(0b10);
|
|
|
|
/*
|
|
* Trim the slow clock from 32kHz down to 31.25kHz (The slowest it will go)
|
|
* This is somewhat imprecise and documentation is not good.
|
|
* I poked the chip until I figured out the values associated with 31.25kHz
|
|
*/
|
|
MCG_C3 = 0x9B;
|
|
|
|
/*
|
|
* Set Prescaler
|
|
* This is the slowest that the timer can be clocked (Without used the slow timer, which is too slow). It results in ticks of 2.13333uS on the teensy 3.5:
|
|
* 32000 Hz = F_BUS
|
|
* 128 * 1000000uS / F_BUS = 2.133uS
|
|
*
|
|
* 000 = Divide by 1
|
|
* 001 Divide by 2
|
|
* 010 Divide by 4
|
|
* 011 Divide by 8
|
|
* 100 Divide by 16
|
|
* 101 Divide by 32
|
|
* 110 Divide by 64
|
|
* 111 Divide by 128
|
|
*/
|
|
FTM2_SC |= FTM_SC_PS(0b0); //No prescaler
|
|
|
|
//Setup the channels (See Pg 1014 of K64 DS).
|
|
FTM2_C0SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM2_C0SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
//The below enables channel compare interrupt, but this is done in idleControl()
|
|
//FTM2_C0SC |= FTM_CSC_CHIE;
|
|
|
|
FTM2_C1SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM2_C1SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
//Enable channel compare interrupt (This is currently disabled as not in use)
|
|
//FTM2_C1SC |= FTM_CSC_CHIE;
|
|
|
|
FTM2_C1SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM2_C1SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
//Enable channel compare interrupt (This is currently disabled as not in use)
|
|
//FTM2_C1SC |= FTM_CSC_CHIE;
|
|
|
|
//Enable IRQ Interrupt
|
|
NVIC_ENABLE_IRQ(IRQ_FTM2);
|
|
}
|
|
|
|
/*
|
|
***********************************************************************************************************
|
|
* Timers
|
|
*/
|
|
//Uses the PIT timer on Teensy.
|
|
lowResTimer.begin(oneMSInterval, 1000);
|
|
|
|
/*
|
|
***********************************************************************************************************
|
|
* Auxilliaries
|
|
*/
|
|
//FlexTimer 1 is used for boost and VVT. There are 8 channels on this module
|
|
FTM1_MODE |= FTM_MODE_WPDIS; // Write Protection Disable
|
|
FTM1_MODE |= FTM_MODE_FTMEN; //Flex Timer module enable
|
|
FTM1_MODE |= FTM_MODE_INIT;
|
|
FTM1_SC |= FTM_SC_CLKS(0b1); // Set internal clocked
|
|
FTM1_SC |= FTM_SC_PS(0b111); //Set prescaler to 128 (2.1333uS tick time)
|
|
|
|
//Enable each compare channel individually
|
|
FTM1_C0SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM1_C0SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM1_C0SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
FTM1_C1SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM1_C1SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM1_C1SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
//NVIC_ENABLE_IRQ(IRQ_FTM1);
|
|
|
|
//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
|
|
|
|
/*
|
|
***********************************************************************************************************
|
|
* Schedules
|
|
*/
|
|
|
|
//FlexTimer 0 is used for 4 ignition and 4 injection schedules. There are 8 channels on this module, so no other timers are needed
|
|
FTM0_MODE |= FTM_MODE_WPDIS; //Write Protection Disable
|
|
FTM0_MODE |= FTM_MODE_FTMEN; //Flex Timer module enable
|
|
FTM0_MODE |= FTM_MODE_INIT;
|
|
|
|
FTM0_SC = 0x00; // Set this to zero before changing the modulus
|
|
FTM0_CNTIN = 0x0000; //Shouldn't be needed, but just in case
|
|
FTM0_CNT = 0x0000; //Reset the count to zero
|
|
FTM0_MOD = 0xFFFF; //max modulus = 65535
|
|
|
|
//FlexTimer 3 is used for schedules on channel 5+. Currently only channel 5 is used, but will likely be expanded later
|
|
FTM3_MODE |= FTM_MODE_WPDIS; //Write Protection Disable
|
|
FTM3_MODE |= FTM_MODE_FTMEN; //Flex Timer module enable
|
|
FTM3_MODE |= FTM_MODE_INIT;
|
|
|
|
FTM3_SC = 0x00; // Set this to zero before changing the modulus
|
|
FTM3_CNTIN = 0x0000; //Shouldn't be needed, but just in case
|
|
FTM3_CNT = 0x0000; //Reset the count to zero
|
|
FTM3_MOD = 0xFFFF; //max modulus = 65535
|
|
|
|
/*
|
|
* Enable the clock for FTM0/1
|
|
* 00 No clock selected. Disables the FTM counter.
|
|
* 01 System clock
|
|
* 10 Fixed frequency clock
|
|
* 11 External clock
|
|
*/
|
|
FTM0_SC |= FTM_SC_CLKS(0b1);
|
|
FTM3_SC |= FTM_SC_CLKS(0b1);
|
|
|
|
/*
|
|
* Set Prescaler
|
|
* This is the slowest that the timer can be clocked (Without used the slow timer, which is too slow). It results in ticks of 2.13333uS on the teensy 3.5:
|
|
* 60000000 Hz = F_BUS
|
|
* 128 * 1000000uS / F_BUS = 2.133uS
|
|
*
|
|
* 000 = Divide by 1
|
|
* 001 Divide by 2
|
|
* 010 Divide by 4
|
|
* 011 Divide by 8
|
|
* 100 Divide by 16
|
|
* 101 Divide by 32
|
|
* 110 Divide by 64
|
|
* 111 Divide by 128
|
|
*/
|
|
FTM0_SC |= FTM_SC_PS(0b111);
|
|
FTM3_SC |= FTM_SC_PS(0b111);
|
|
|
|
//Setup the channels (See Pg 1014 of K64 DS).
|
|
//The are probably not needed as power on state should be 0
|
|
//FTM0_C0SC &= ~FTM_CSC_ELSB;
|
|
//FTM0_C0SC &= ~FTM_CSC_ELSA;
|
|
//FTM0_C0SC &= ~FTM_CSC_DMA;
|
|
FTM0_C0SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM0_C0SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM0_C0SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM0_C1SC &= ~FTM_CSC_MSB; //According to Pg 965 of the datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM0_C1SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM0_C1SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM0_C2SC &= ~FTM_CSC_MSB; //According to Pg 965 of the datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM0_C2SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM0_C2SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM0_C3SC &= ~FTM_CSC_MSB; //According to Pg 965 of the datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM0_C3SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM0_C3SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM0_C4SC &= ~FTM_CSC_MSB; //According to Pg 965 of the datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM0_C4SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM0_C4SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM0_C5SC &= ~FTM_CSC_MSB; //According to Pg 965 of the datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM0_C5SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM0_C5SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM0_C6SC &= ~FTM_CSC_MSB; //According to Pg 965 of the datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM0_C6SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM0_C6SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM0_C7SC &= ~FTM_CSC_MSB; //According to Pg 965 of the datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM0_C7SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM0_C7SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
//Do the same, but on flex timer 3 (Used for channels 5-8)
|
|
FTM3_C0SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM3_C0SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM3_C0SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM3_C1SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM3_C1SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM3_C1SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM3_C2SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM3_C2SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM3_C2SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM3_C3SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM3_C3SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM3_C3SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM3_C4SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM3_C4SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM3_C4SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM3_C5SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM3_C5SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM3_C5SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM3_C6SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM3_C6SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM3_C6SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
FTM3_C7SC &= ~FTM_CSC_MSB; //According to Pg 965 of the K64 datasheet, this should not be needed as MSB is reset to 0 upon reset, but the channel interrupt fails to fire without it
|
|
FTM3_C7SC |= FTM_CSC_MSA; //Enable Compare mode
|
|
FTM3_C7SC |= FTM_CSC_CHIE; //Enable channel compare interrupt
|
|
|
|
// enable IRQ Interrupt
|
|
NVIC_ENABLE_IRQ(IRQ_FTM0);
|
|
NVIC_ENABLE_IRQ(IRQ_FTM1);
|
|
|
|
}
|
|
|
|
uint16_t freeRam()
|
|
{
|
|
uint32_t stackTop;
|
|
uint32_t heapTop;
|
|
|
|
// current position of the stack.
|
|
stackTop = (uint32_t) &stackTop;
|
|
|
|
// current position of heap.
|
|
void* hTop = malloc(1);
|
|
heapTop = (uint32_t) hTop;
|
|
free(hTop);
|
|
|
|
// The difference is the free, available ram.
|
|
return (uint16_t)stackTop - heapTop;
|
|
}
|
|
|
|
|
|
#endif |