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 #define PORT_TYPE uint32_t //Size of the port variables
17 #define PINMASK_TYPE uint32_t
18 #define COMPARE_TYPE uint16_t
19 #define COUNTER_TYPE uint16_t
20 #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)
21 #define FPU_MAX_SIZE 32 //Size of the FPU buffer. 0 means no FPU.
22 #define BOARD_MAX_DIGITAL_PINS 54
23 #define BOARD_MAX_IO_PINS 54
24 #define BOARD_MAX_ADC_PINS 17 //Number of analog pins
25 #define EEPROM_LIB_H <EEPROM.h>
26 typedef int eeprom_address_t;
27 #define RTC_ENABLED
28 #define SD_LOGGING //SD logging enabled by default for Teensy 4.1 as it has the slot built in
29 #define RTC_LIB_H "TimeLib.h"
30 #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
31
32 #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()
33 //#define PWM_FAN_AVAILABLE
34 #define pinIsReserved(pin) ( ((pin) == 0) || ((pin) == 42) || ((pin) == 43) || ((pin) == 44) || ((pin) == 45) || ((pin) == 46) || ((pin) == 47) ) //Forbidden pins like USB
35
36
37/*
38***********************************************************************************************************
39* Schedules
40*/
41 /*
42 https://github.com/luni64/TeensyTimerTool/wiki/Supported-Timers#pit---periodic-timer
43 https://github.com/luni64/TeensyTimerTool/wiki/Configuration#clock-setting-for-the-gpt-and-pit-timers
44 The Quad timer (TMR) provides 4 timers each with 4 usable compare channels. The down compare and alternating compares are not usable
45 FUEL 1-4: TMR1
46 IGN 1-4 : TMR2
47 FUEL 5-8: TMR3
48 IGN 5-8 : TMR4
49 */
50 #define FUEL1_COUNTER TMR1_CNTR0
51 #define FUEL2_COUNTER TMR1_CNTR1
52 #define FUEL3_COUNTER TMR1_CNTR2
53 #define FUEL4_COUNTER TMR1_CNTR3
54 #define FUEL5_COUNTER TMR3_CNTR0
55 #define FUEL6_COUNTER TMR3_CNTR1
56 #define FUEL7_COUNTER TMR3_CNTR2
57 #define FUEL8_COUNTER TMR3_CNTR3
58
59 #define IGN1_COUNTER TMR2_CNTR0
60 #define IGN2_COUNTER TMR2_CNTR1
61 #define IGN3_COUNTER TMR2_CNTR2
62 #define IGN4_COUNTER TMR2_CNTR3
63 #define IGN5_COUNTER TMR4_CNTR0
64 #define IGN6_COUNTER TMR4_CNTR1
65 #define IGN7_COUNTER TMR4_CNTR2
66 #define IGN8_COUNTER TMR4_CNTR3
67
68 #define FUEL1_COMPARE TMR1_COMP10
69 #define FUEL2_COMPARE TMR1_COMP11
70 #define FUEL3_COMPARE TMR1_COMP12
71 #define FUEL4_COMPARE TMR1_COMP13
72 #define FUEL5_COMPARE TMR3_COMP10
73 #define FUEL6_COMPARE TMR3_COMP11
74 #define FUEL7_COMPARE TMR3_COMP12
75 #define FUEL8_COMPARE TMR3_COMP13
76
77 #define IGN1_COMPARE TMR2_COMP10
78 #define IGN2_COMPARE TMR2_COMP11
79 #define IGN3_COMPARE TMR2_COMP12
80 #define IGN4_COMPARE TMR2_COMP13
81 #define IGN5_COMPARE TMR4_COMP10
82 #define IGN6_COMPARE TMR4_COMP11
83 #define IGN7_COMPARE TMR4_COMP12
84 #define IGN8_COMPARE TMR4_COMP13
85
86 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
94
95 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
96 static inline void FUEL2_TIMER_DISABLE(void) {TMR1_CSCTRL1 &= ~TMR_CSCTRL_TCF1EN;}
97 static inline void FUEL3_TIMER_DISABLE(void) {TMR1_CSCTRL2 &= ~TMR_CSCTRL_TCF1EN;}
98 static inline void FUEL4_TIMER_DISABLE(void) {TMR1_CSCTRL3 &= ~TMR_CSCTRL_TCF1EN;}
99 static inline void FUEL5_TIMER_DISABLE(void) {TMR3_CSCTRL0 &= ~TMR_CSCTRL_TCF1EN;}
100 static inline void FUEL6_TIMER_DISABLE(void) {TMR3_CSCTRL1 &= ~TMR_CSCTRL_TCF1EN;}
101 static inline void FUEL7_TIMER_DISABLE(void) {TMR3_CSCTRL2 &= ~TMR_CSCTRL_TCF1EN;}
102 static inline void FUEL8_TIMER_DISABLE(void) {TMR3_CSCTRL3 &= ~TMR_CSCTRL_TCF1EN;}
103
112
113 static inline void IGN1_TIMER_DISABLE(void) {TMR2_CSCTRL0 &= ~TMR_CSCTRL_TCF1EN;}
114 static inline void IGN2_TIMER_DISABLE(void) {TMR2_CSCTRL1 &= ~TMR_CSCTRL_TCF1EN;}
115 static inline void IGN3_TIMER_DISABLE(void) {TMR2_CSCTRL2 &= ~TMR_CSCTRL_TCF1EN;}
116 static inline void IGN4_TIMER_DISABLE(void) {TMR2_CSCTRL3 &= ~TMR_CSCTRL_TCF1EN;}
117 static inline void IGN5_TIMER_DISABLE(void) {TMR4_CSCTRL0 &= ~TMR_CSCTRL_TCF1EN;}
118 static inline void IGN6_TIMER_DISABLE(void) {TMR4_CSCTRL1 &= ~TMR_CSCTRL_TCF1EN;}
119 static inline void IGN7_TIMER_DISABLE(void) {TMR4_CSCTRL2 &= ~TMR_CSCTRL_TCF1EN;}
120 static inline void IGN8_TIMER_DISABLE(void) {TMR4_CSCTRL3 &= ~TMR_CSCTRL_TCF1EN;}
121
122 //Bus Clock is 150Mhz @ 600 Mhz CPU. Need to handle this dynamically in the future for other frequencies
123 //#define TMR_PRESCALE 128
124 //#define MAX_TIMER_PERIOD ((65535 * 1000000ULL) / (F_BUS_ACTUAL / TMR_PRESCALE)) //55923 @ 600Mhz.
125 #define MAX_TIMER_PERIOD 55923UL
126 #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.
127 /*
128 To calculate the above uS_TO_TIMER_COMPARE
129 Choose number of bit of precision. Eg: 6
130 Divide 2^6 by the time per tick (0.853333) = 75
131 Multiply and bitshift back by the precision: (uS * 75) >> 6
132 */
133
134/*
135***********************************************************************************************************
136* Auxiliaries
137*/
138 #define ENABLE_BOOST_TIMER() PIT_TCTRL1 |= PIT_TCTRL_TEN
139 #define DISABLE_BOOST_TIMER() PIT_TCTRL1 &= ~PIT_TCTRL_TEN
140
141 #define ENABLE_VVT_TIMER() PIT_TCTRL2 |= PIT_TCTRL_TEN
142 #define DISABLE_VVT_TIMER() PIT_TCTRL2 &= ~PIT_TCTRL_TEN
143
144 //Ran out of timers, this most likely won't work. This should be possible to implement with the GPT timer.
145 #define ENABLE_FAN_TIMER() TMR3_CSCTRL1 |= TMR_CSCTRL_TCF2EN
146 #define DISABLE_FAN_TIMER() TMR3_CSCTRL1 &= ~TMR_CSCTRL_TCF2EN
147
148 #define BOOST_TIMER_COMPARE PIT_LDVAL1
149 #define BOOST_TIMER_COUNTER 0
150 #define VVT_TIMER_COMPARE PIT_LDVAL2
151 #define VVT_TIMER_COUNTER 0
152
153 //these probaply need to be PIT_LDVAL something???
154 #define FAN_TIMER_COMPARE TMR3_COMP22
155 #define FAN_TIMER_COUNTER TMR3_CNTR1
156
157/*
158***********************************************************************************************************
159* Idle
160*/
161 #define IDLE_COUNTER 0
162 #define IDLE_COMPARE PIT_LDVAL0
163
164 #define IDLE_TIMER_ENABLE() PIT_TCTRL0 |= PIT_TCTRL_TEN
165 #define IDLE_TIMER_DISABLE() PIT_TCTRL0 &= ~PIT_TCTRL_TEN
166
167/*
168***********************************************************************************************************
169* CAN / Second serial
170*/
171 #define USE_SERIAL3
172 #define secondarySerial_AVAILABLE
173 #define SECONDARY_SERIAL_T HardwareSerial
174
175 #include <FlexCAN_T4.h>
176 /*
177 //These are declared locally in comms_CAN now due to this issue: https://github.com/tonton81/FlexCAN_T4/issues/67
178 extern FlexCAN_T4<CAN1, RX_SIZE_256, TX_SIZE_16> Can0;
179 extern FlexCAN_T4<CAN2, RX_SIZE_256, TX_SIZE_16> Can1;
180 extern FlexCAN_T4<CAN3, RX_SIZE_256, TX_SIZE_16> Can2;
181 */
182 #define NATIVE_CAN_AVAILABLE //Disable for now as it causes lockup
183
184#endif //CORE_TEENSY
185#endif //TEENSY41_H
static uint32_t rshift(uint32_t a)
Bitwise right shift - generic, unoptimized, case.
Definition bit_shifts.h:349