Speeduino
Loading...
Searching...
No Matches
board_teensy41.h
Go to the documentation of this file.
1#ifndef TEENSY41_H
2#define TEENSY41_H
3
4#if defined(CORE_TEENSY) && defined(__IMXRT1062__)
5
6/*
7***********************************************************************************************************
8* General
9*/
10 void initBoard();
12 void doSystemReset();
13 void jumpToBootloader();
16 bool pinIsSerial(uint8_t);
19 #define PORT_TYPE uint32_t //Size of the port variables
20 #define PINMASK_TYPE uint32_t
21 #define COMPARE_TYPE uint16_t
22 #define COUNTER_TYPE uint16_t
23 #define SERIAL_BUFFER_SIZE 517 //Size of the serial buffer used by new comms protocol. For SD transfers this must be at least 512 + 1 (flag) + 4 (sector)
24 #define FPU_MAX_SIZE 32 //Size of the FPU buffer. 0 means no FPU.
25 #define BOARD_MAX_DIGITAL_PINS 54
26 #define BOARD_MAX_IO_PINS 54
27 #define BOARD_MAX_ADC_PINS 17 //Number of analog pins
28 #define EEPROM_LIB_H <EEPROM.h>
29 typedef int eeprom_address_t;
30 #define RTC_ENABLED
31 #define SD_LOGGING //SD logging enabled by default for Teensy 4.1 as it has the slot built in
32 #define RTC_LIB_H "TimeLib.h"
33 #define SD_CONFIG SdioConfig(FIFO_SDIO) //Set Teensy to use SDIO in FIFO mode. This is the fastest SD mode on Teensy as it offloads most of the writes
34
35 #define micros_safe() micros() //timer5 method is not used on anything but AVR, the micros_safe() macro is simply an alias for the normal micros()
36 //#define PWM_FAN_AVAILABLE
37 #define pinIsReserved(pin) ( ((pin) == 0) || ((pin) == 42) || ((pin) == 43) || ((pin) == 44) || ((pin) == 45) || ((pin) == 46) || ((pin) == 47) || pinIsSerial((pin)) ) //Forbidden pins like USB
38
39
40/*
41***********************************************************************************************************
42* Schedules
43*/
44 /*
45 https://github.com/luni64/TeensyTimerTool/wiki/Supported-Timers#pit---periodic-timer
46 https://github.com/luni64/TeensyTimerTool/wiki/Configuration#clock-setting-for-the-gpt-and-pit-timers
47 The Quad timer (TMR) provides 4 timers each with 4 usable compare channels. The down compare and alternating compares are not usable
48 FUEL 1-4: TMR1
49 IGN 1-4 : TMR2
50 FUEL 5-8: TMR3
51 IGN 5-8 : TMR4
52 */
53 #define FUEL1_COUNTER TMR1_CNTR0
54 #define FUEL2_COUNTER TMR1_CNTR1
55 #define FUEL3_COUNTER TMR1_CNTR2
56 #define FUEL4_COUNTER TMR1_CNTR3
57 #define FUEL5_COUNTER TMR3_CNTR0
58 #define FUEL6_COUNTER TMR3_CNTR1
59 #define FUEL7_COUNTER TMR3_CNTR2
60 #define FUEL8_COUNTER TMR3_CNTR3
61
62 #define IGN1_COUNTER TMR2_CNTR0
63 #define IGN2_COUNTER TMR2_CNTR1
64 #define IGN3_COUNTER TMR2_CNTR2
65 #define IGN4_COUNTER TMR2_CNTR3
66 #define IGN5_COUNTER TMR4_CNTR0
67 #define IGN6_COUNTER TMR4_CNTR1
68 #define IGN7_COUNTER TMR4_CNTR2
69 #define IGN8_COUNTER TMR4_CNTR3
70
71 #define FUEL1_COMPARE TMR1_COMP10
72 #define FUEL2_COMPARE TMR1_COMP11
73 #define FUEL3_COMPARE TMR1_COMP12
74 #define FUEL4_COMPARE TMR1_COMP13
75 #define FUEL5_COMPARE TMR3_COMP10
76 #define FUEL6_COMPARE TMR3_COMP11
77 #define FUEL7_COMPARE TMR3_COMP12
78 #define FUEL8_COMPARE TMR3_COMP13
79
80 #define IGN1_COMPARE TMR2_COMP10
81 #define IGN2_COMPARE TMR2_COMP11
82 #define IGN3_COMPARE TMR2_COMP12
83 #define IGN4_COMPARE TMR2_COMP13
84 #define IGN5_COMPARE TMR4_COMP10
85 #define IGN6_COMPARE TMR4_COMP11
86 #define IGN7_COMPARE TMR4_COMP12
87 #define IGN8_COMPARE TMR4_COMP13
88
89 static inline void FUEL1_TIMER_ENABLE(void) {TMR1_CSCTRL0 &= ~TMR_CSCTRL_TCF1; TMR1_CSCTRL0 |= TMR_CSCTRL_TCF1EN;} //Write 1 to the TCFIEN (Channel Interrupt Enable) bit of channel 0 Status/Control
97
98 static inline void FUEL1_TIMER_DISABLE(void) {TMR1_CSCTRL0 &= ~TMR_CSCTRL_TCF1EN;} //Write 0 to the TCFIEN (Channel Interrupt Enable) bit of channel 0 Status/Control
99 static inline void FUEL2_TIMER_DISABLE(void) {TMR1_CSCTRL1 &= ~TMR_CSCTRL_TCF1EN;}
100 static inline void FUEL3_TIMER_DISABLE(void) {TMR1_CSCTRL2 &= ~TMR_CSCTRL_TCF1EN;}
101 static inline void FUEL4_TIMER_DISABLE(void) {TMR1_CSCTRL3 &= ~TMR_CSCTRL_TCF1EN;}
102 static inline void FUEL5_TIMER_DISABLE(void) {TMR3_CSCTRL0 &= ~TMR_CSCTRL_TCF1EN;}
103 static inline void FUEL6_TIMER_DISABLE(void) {TMR3_CSCTRL1 &= ~TMR_CSCTRL_TCF1EN;}
104 static inline void FUEL7_TIMER_DISABLE(void) {TMR3_CSCTRL2 &= ~TMR_CSCTRL_TCF1EN;}
105 static inline void FUEL8_TIMER_DISABLE(void) {TMR3_CSCTRL3 &= ~TMR_CSCTRL_TCF1EN;}
106
115
116 static inline void IGN1_TIMER_DISABLE(void) {TMR2_CSCTRL0 &= ~TMR_CSCTRL_TCF1EN;}
117 static inline void IGN2_TIMER_DISABLE(void) {TMR2_CSCTRL1 &= ~TMR_CSCTRL_TCF1EN;}
118 static inline void IGN3_TIMER_DISABLE(void) {TMR2_CSCTRL2 &= ~TMR_CSCTRL_TCF1EN;}
119 static inline void IGN4_TIMER_DISABLE(void) {TMR2_CSCTRL3 &= ~TMR_CSCTRL_TCF1EN;}
120 static inline void IGN5_TIMER_DISABLE(void) {TMR4_CSCTRL0 &= ~TMR_CSCTRL_TCF1EN;}
121 static inline void IGN6_TIMER_DISABLE(void) {TMR4_CSCTRL1 &= ~TMR_CSCTRL_TCF1EN;}
122 static inline void IGN7_TIMER_DISABLE(void) {TMR4_CSCTRL2 &= ~TMR_CSCTRL_TCF1EN;}
123 static inline void IGN8_TIMER_DISABLE(void) {TMR4_CSCTRL3 &= ~TMR_CSCTRL_TCF1EN;}
124
125 // Need to handle this dynamically in the future for other frequencies
126 //#define TMR_PRESCALE 128
127 //#define MAX_TIMER_PERIOD ((65535U * 1000000ULL) / (F_BUS_ACTUAL / TMR_PRESCALE)) //55923 @ 600Mhz.
128 #if F_CPU == 600000000
129 //Bus Clock is 150Mhz @ 600 Mhz CPU.
130 #define MAX_TIMER_PERIOD 55923UL //Time per tick = 0.8533333
131 #define uS_TO_TIMER_COMPARE(uS) ((uS * 75UL) >> 6) //Converts a given number of uS into the required number of timer ticks until that time has passed.
132 #elif F_CPU == 528000000
133 //Bus Clock is 132Mhz @ 528 Mhz CPU.
134 #define MAX_TIMER_PERIOD 63549UL //Time per tick = 0.96969696
135 #define uS_TO_TIMER_COMPARE(uS) ((uS * 66UL) >> 6) //Converts a given number of uS into the required number of timer ticks until that time has passed.
136 #elif F_CPU == 450000000
137 //Bus Clock is 150Mhz @ 450 Mhz CPU.
138 #define MAX_TIMER_PERIOD 55923UL //Time per tick = 0.8533333
139 #define uS_TO_TIMER_COMPARE(uS) ((uS * 75UL) >> 6) //Converts a given number of uS into the required number of timer ticks until that time has passed.
140 #elif F_CPU == 396000000
141 //Bus Clock is 132Mhz @ 396 Mhz CPU.
142 #define MAX_TIMER_PERIOD 63549UL //Time per tick = 0.96969696
143 #define uS_TO_TIMER_COMPARE(uS) ((uS * 66UL) >> 6) //Converts a given number of uS into the required number of timer ticks until that time has passed.
144 #elif F_CPU == 150000000
145 //Bus Clock is 75Mhz @ 150 Mhz CPU.
146 #define MAX_TIMER_PERIOD 111846UL //Time per tick = 1.706666
147 #define uS_TO_TIMER_COMPARE(uS) ((uS * 75UL) >> 7) //Converts a given number of uS into the required number of timer ticks until that time has passed.
148 #endif
149 /*
150 To calculate the above uS_TO_TIMER_COMPARE
151 Choose number of bit of precision. Eg: 6
152 Divide 2^6 by the time per tick (0.853333) = 75
153 Multiply and bitshift back by the precision: (uS * 75) >> 6
154 */
155
156/*
157***********************************************************************************************************
158* Auxiliaries
159*/
160 #define ENABLE_BOOST_TIMER() PIT_TCTRL1 |= PIT_TCTRL_TEN
161 #define DISABLE_BOOST_TIMER() PIT_TCTRL1 &= ~PIT_TCTRL_TEN
162
163 #define ENABLE_VVT_TIMER() PIT_TCTRL2 |= PIT_TCTRL_TEN
164 #define DISABLE_VVT_TIMER() PIT_TCTRL2 &= ~PIT_TCTRL_TEN
165
166 //Ran out of timers, this most likely won't work. This should be possible to implement with the GPT timer.
167 #define ENABLE_FAN_TIMER() TMR3_CSCTRL1 |= TMR_CSCTRL_TCF2EN
168 #define DISABLE_FAN_TIMER() TMR3_CSCTRL1 &= ~TMR_CSCTRL_TCF2EN
169
170 #define BOOST_TIMER_COMPARE PIT_LDVAL1
171 #define BOOST_TIMER_COUNTER 0
172 #define VVT_TIMER_COMPARE PIT_LDVAL2
173 #define VVT_TIMER_COUNTER 0
174
175 //these probaply need to be PIT_LDVAL something???
176 #define FAN_TIMER_COMPARE TMR3_COMP22
177 #define FAN_TIMER_COUNTER TMR3_CNTR1
178
179/*
180***********************************************************************************************************
181* Idle
182*/
183 #define IDLE_COUNTER 0
184 #define IDLE_COMPARE PIT_LDVAL0
185
186 #define IDLE_TIMER_ENABLE() PIT_TCTRL0 |= PIT_TCTRL_TEN
187 #define IDLE_TIMER_DISABLE() PIT_TCTRL0 &= ~PIT_TCTRL_TEN
188
189/*
190***********************************************************************************************************
191* CAN / Second serial
192*/
193 #define USE_SERIAL3
194 #define secondarySerial_AVAILABLE
195 #define SECONDARY_SERIAL_T HardwareSerial
196
197 #include <FlexCAN_T4.h>
198 /*
199 //These are declared locally in comms_CAN now due to this issue: https://github.com/tonton81/FlexCAN_T4/issues/67
200 extern FlexCAN_T4<CAN1, RX_SIZE_256, TX_SIZE_16> Can0;
201 extern FlexCAN_T4<CAN2, RX_SIZE_256, TX_SIZE_16> Can1;
202 extern FlexCAN_T4<CAN3, RX_SIZE_256, TX_SIZE_16> Can2;
203 */
204 #define NATIVE_CAN_AVAILABLE //Disable for now as it causes lockup
205
206#endif //CORE_TEENSY
207#endif //TEENSY41_H
static uint32_t rshift(uint32_t a)
Bitwise right shift - generic, unoptimized, case.
Definition bit_shifts.h:348