forked from tonton81/FlexCAN_T4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FlexCAN_T4.tpp
1323 lines (1210 loc) · 65.9 KB
/
FlexCAN_T4.tpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
MIT License
Copyright (c) 2018 Antonio Alexander Brewer (tonton81) - https://github.com/tonton81
Designed and tested for PJRC Teensy 4.0.
Forum link : https://forum.pjrc.com/threads/56035-FlexCAN_T4-FlexCAN-for-Teensy-4?highlight=flexcan_t4
Thanks goes to skpang, mjs513, and collin for tech/testing support
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include <FlexCAN_T4.h>
#include "imxrt_flexcan.h"
#include "Arduino.h"
#if defined(__IMXRT1062__)
static void flexcan_isr_can3();
static void flexcan_isr_can2();
static void flexcan_isr_can1();
#endif
#if defined(__MK20DX256__) || defined(__MK64FX512__)
static void flexcan_isr_can0();
#endif
#if defined(__MK66FX1M0__)
static void flexcan_isr_can0();
static void flexcan_isr_can1();
#endif
FCTP_FUNC FCTP_OPT::FlexCAN_T4() {
#if defined(__IMXRT1062__)
if ( _bus == CAN3 ) _CAN3 = this;
if ( _bus == CAN2 ) _CAN2 = this;
if ( _bus == CAN1 ) _CAN1 = this;
#endif
#if defined(__MK20DX256__) || defined(__MK64FX512__) || defined(__MK66FX1M0__)
if ( _bus == CAN1 ) _CAN1 = this;
if ( _bus == CAN0 ) _CAN0 = this;
#endif
}
#if defined(__IMXRT1062__)
FCTP_FUNC void FCTP_OPT::setClock(FLEXCAN_CLOCK clock) {
if ( clock == CLK_OFF ) CCM_CSCMR2 = (CCM_CSCMR2 & 0xFFFFFC03) | CCM_CSCMR2_CAN_CLK_SEL(3) | CCM_CSCMR2_CAN_CLK_PODF(0);
if ( clock == CLK_8MHz ) CCM_CSCMR2 = (CCM_CSCMR2 & 0xFFFFFC03) | CCM_CSCMR2_CAN_CLK_SEL(2) | CCM_CSCMR2_CAN_CLK_PODF(9);
if ( clock == CLK_16MHz ) CCM_CSCMR2 = (CCM_CSCMR2 & 0xFFFFFC03) | CCM_CSCMR2_CAN_CLK_SEL(2) | CCM_CSCMR2_CAN_CLK_PODF(4);
if ( clock == CLK_24MHz ) CCM_CSCMR2 = (CCM_CSCMR2 & 0xFFFFFC03) | CCM_CSCMR2_CAN_CLK_SEL(1) | CCM_CSCMR2_CAN_CLK_PODF(0);
if ( clock == CLK_20MHz ) CCM_CSCMR2 = (CCM_CSCMR2 & 0xFFFFFC03) | CCM_CSCMR2_CAN_CLK_SEL(2) | CCM_CSCMR2_CAN_CLK_PODF(3);
if ( clock == CLK_30MHz ) CCM_CSCMR2 = (CCM_CSCMR2 & 0xFFFFFC03) | CCM_CSCMR2_CAN_CLK_SEL(0) | CCM_CSCMR2_CAN_CLK_PODF(1);
if ( clock == CLK_40MHz ) CCM_CSCMR2 = (CCM_CSCMR2 & 0xFFFFFC03) | CCM_CSCMR2_CAN_CLK_SEL(2) | CCM_CSCMR2_CAN_CLK_PODF(1);
if ( clock == CLK_60MHz ) CCM_CSCMR2 = (CCM_CSCMR2 & 0xFFFFFC03) | CCM_CSCMR2_CAN_CLK_SEL(0) | CCM_CSCMR2_CAN_CLK_PODF(0);
if ( clock == CLK_80MHz ) CCM_CSCMR2 = (CCM_CSCMR2 & 0xFFFFFC03) | CCM_CSCMR2_CAN_CLK_SEL(2) | CCM_CSCMR2_CAN_CLK_PODF(0);
if ( _CAN1 ) _CAN1->setBaudRate(currentBitrate);
if ( _CAN2 ) _CAN2->setBaudRate(currentBitrate);
if ( _CAN3 ) _CAN3->setBaudRate(currentBitrate);
}
FCTP_FUNC uint32_t FCTP_OPT::getClock() {
const uint8_t clocksrc[4] = {60, 24, 80, 0};
return clocksrc[(CCM_CSCMR2 & 0x300) >> 8];
}
#endif
FCTP_FUNC void FCTP_OPT::begin() {
#if defined(__IMXRT1062__)
if ( !getClock() ) setClock(CLK_24MHz); /* no clock enabled, enable osc clock */
if ( _bus == CAN3 ) {
nvicIrq = IRQ_CAN3;
_VectorsRam[16 + nvicIrq] = flexcan_isr_can3;
CCM_CCGR7 |= 0x3C0;
busNumber = 3;
}
if ( _bus == CAN2 ) {
nvicIrq = IRQ_CAN2;
_VectorsRam[16 + nvicIrq] = flexcan_isr_can2;
CCM_CCGR0 |= 0x3C0000;
busNumber = 2;
}
if ( _bus == CAN1 ) {
nvicIrq = IRQ_CAN1;
_VectorsRam[16 + nvicIrq] = flexcan_isr_can1;
CCM_CCGR0 |= 0x3C000;
busNumber = 1;
}
#endif
#if defined(__MK20DX256__)
if ( _bus == CAN0 ) {
nvicIrq = IRQ_CAN_MESSAGE;
_VectorsRam[16 + nvicIrq] = flexcan_isr_can0;
busNumber = 0;
}
#endif
#if defined(__MK64FX512__) || defined(__MK66FX1M0__)
if ( _bus == CAN0 ) {
nvicIrq = IRQ_CAN0_MESSAGE;
_VectorsRam[16 + nvicIrq] = flexcan_isr_can0;
busNumber = 0;
}
#endif
#if defined(__MK66FX1M0__)
else if ( _bus == CAN1 ) {
nvicIrq = IRQ_CAN1_MESSAGE;
_VectorsRam[16 + nvicIrq] = flexcan_isr_can1;
busNumber = 1;
}
#endif
#if defined(__MK20DX256__) || defined(__MK64FX512__) || defined(__MK66FX1M0__)
OSC0_CR |= OSC_ERCLKEN;
if ( _bus == CAN0 ) SIM_SCGC6 |= SIM_SCGC6_FLEXCAN0;
#if defined(__MK66FX1M0__)
else if ( _bus == CAN1 ) SIM_SCGC3 |= SIM_SCGC3_FLEXCAN1;
#endif
FLEXCANb_CTRL1(_bus) &= ~FLEXCAN_CTRL_CLK_SRC;
#endif
setTx(); setRx();
FLEXCANb_MCR(_bus) &= ~FLEXCAN_MCR_MDIS; /* enable module */
FLEXCAN_EnterFreezeMode();
FLEXCANb_CTRL1(_bus) |= FLEXCAN_CTRL_LOM; /* listen only mode */
FLEXCANb_MCR(_bus) |= FLEXCAN_MCR_FRZ; /* enable freeze bit */
while (FLEXCANb_MCR(_bus) & FLEXCAN_MCR_LPM_ACK);
softReset(); /* reset bus */
while (!(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FRZ_ACK));
FLEXCANb_MCR(_bus) |= FLEXCAN_MCR_SRX_DIS; /* Disable self-reception */
FLEXCANb_MCR(_bus) |= FLEXCAN_MCR_IRMQ; // individual mailbox masking
FLEXCANb_MCR(_bus) |= FLEXCAN_MCR_AEN; // TX ABORT FEATURE
FLEXCANb_MCR(_bus) |= FLEXCAN_MCR_LPRIO_EN; // TX PRIORITY FEATURE
FLEXCANb_MCR(_bus) &= ~0x8800; // disable DMA and FD (valid bits are reserved in legacy controllers)
FLEXCANb_CTRL2(_bus) |= FLEXCAN_CTRL2_RRS | // store remote frames
FLEXCAN_CTRL2_EACEN | /* handles the way filtering works. Library adjusts to whether you use this or not */
FLEXCAN_CTRL2_MRP; // mailbox > FIFO priority.
FLEXCANb_MCR(_bus) |= FLEXCAN_MCR_WRN_EN;
FLEXCANb_MCR(_bus) |= FLEXCAN_MCR_WAK_MSK;
disableFIFO(); /* clears all data and layout to legacy mailbox mode */
FLEXCAN_ExitFreezeMode();
NVIC_ENABLE_IRQ(nvicIrq);
}
FCTP_FUNC void FCTP_OPT::enableFIFO(bool status) {
bool frz_flag_negate = !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FRZ_ACK);
FLEXCAN_EnterFreezeMode();
FLEXCANb_MCR(_bus) &= ~FLEXCAN_MCR_FEN; // Disable FIFO if already enabled for cleanup.
writeIMASK(0ULL); // disable all FIFO/MB Interrupts
for (uint8_t i = 0; i < FLEXCANb_MAXMB_SIZE(_bus); i++ ) { // clear all mailboxes
volatile uint32_t *mbxAddr = &(*(volatile uint32_t*)(_bus + 0x80 + (i * 0x10)));
mbxAddr[0] = mbxAddr[1] = mbxAddr[2] = mbxAddr[3] = 0; // code, id, word0, word1
FLEXCANb_RXIMR(_bus, i) = 0UL; // CLEAR MAILBOX MASKS (RXIMR)
}
FLEXCANb_RXMGMASK(_bus) = FLEXCANb_RXFGMASK(_bus) = 0;
writeIFLAG(readIFLAG()); // (all bits reset when written back)
if ( status ) {
FLEXCANb_MCR(_bus) |= FLEXCAN_MCR_FEN;
for (uint8_t i = mailboxOffset(); i < FLEXCANb_MAXMB_SIZE(_bus); i++) FLEXCANb_MBn_CS(_bus,i) = FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_TX_INACTIVE);
}
else { // FIFO disabled default setup of mailboxes, 0-7 RX, 8-15 TX
for (uint8_t i = 0; i < FLEXCANb_MAXMB_SIZE(_bus); i++ ) { // clear all mailboxes
volatile uint32_t *mbxAddr = &(*(volatile uint32_t*)(_bus + 0x80 + (i * 0x10)));
if ( i < (FLEXCANb_MAXMB_SIZE(_bus) / 2) ) {
mbxAddr[0] = FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_RX_EMPTY) | ((i < (FLEXCANb_MAXMB_SIZE(_bus) / 4)) ? 0 : FLEXCAN_MB_CS_IDE | FLEXCAN_MB_CS_SRR);
FLEXCANb_RXIMR(_bus, i) = 0UL | ((FLEXCANb_CTRL2(_bus) & FLEXCAN_CTRL2_EACEN) ? (1UL << 30) : 0); // (RXIMR)
}
else {
mbxAddr[0] = FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_TX_INACTIVE);
}
}
}
if ( frz_flag_negate ) FLEXCAN_ExitFreezeMode();
}
FCTP_FUNC void FCTP_OPT::enableFIFOInterrupt(bool status) {
if ( !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FEN) ) return; /* FIFO must be enabled first */
if ( FLEXCANb_IMASK1(_bus) & FLEXCAN_IMASK1_BUF5M ) return; /* FIFO interrupts already enabled */
FLEXCANb_IMASK1(_bus) &= ~0xFF; /* disable FIFO interrupt flags */
if ( status ) FLEXCANb_IMASK1(_bus) |= FLEXCAN_IMASK1_BUF5M; /* enable FIFO interrupt */
}
FCTP_FUNC void FCTP_OPT::enableMBInterrupts(bool status) {
FLEXCAN_EnterFreezeMode();
for ( uint8_t mb_num = mailboxOffset(); mb_num < FLEXCANb_MAXMB_SIZE(_bus); mb_num++ ) {
if ( (FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, mb_num)) >> 3) ) continue; // skip TX mailboxes
enableMBInterrupt((FLEXCAN_MAILBOX)mb_num, status);
}
FLEXCAN_ExitFreezeMode();
}
FCTP_FUNC void FCTP_OPT::enableMBInterrupt(const FLEXCAN_MAILBOX &mb_num, bool status) {
if ( mb_num < mailboxOffset() ) return; /* mailbox not available */
if ( status ) writeIMASKBit(mb_num); /* enable mailbox interrupt */
else writeIMASKBit(mb_num, 0); /* disable mailbox interrupt */
}
FCTP_FUNC bool FCTP_OPT::setMB(const FLEXCAN_MAILBOX &mb_num, const FLEXCAN_RXTX &mb_rx_tx, const FLEXCAN_IDE &ide) {
if ( mb_num < mailboxOffset() ) return 0; /* mailbox not available */
writeIMASKBit(mb_num, 0); /* immediately disable mailbox interrupt */
FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, mb_num)); // Reading Control Status atomically locks mailbox (if it is RX mode).
FLEXCANb_MBn_ID(_bus, mb_num) = 0UL;
FLEXCANb_MBn_WORD0(_bus, mb_num) = 0UL;
FLEXCANb_MBn_WORD1(_bus, mb_num) = 0UL;
if ( mb_rx_tx == RX ) {
if ( ide != EXT ) FLEXCANb_MBn_CS(_bus, mb_num) = FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_RX_EMPTY);
else FLEXCANb_MBn_CS(_bus, mb_num) = FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_RX_EMPTY) | FLEXCAN_MB_CS_SRR | FLEXCAN_MB_CS_IDE;
}
if ( mb_rx_tx == TX ) {
FLEXCANb_MBn_CS(_bus, mb_num) = FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_TX_INACTIVE);
writeIMASKBit(mb_num, 1);
}
if ( ide == INACTIVE ) {
FLEXCANb_MBn_CS(_bus, mb_num) = FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_RX_INACTIVE);
}
(void)FLEXCANb_TIMER(_bus);
writeIFLAGBit(mb_num); /* clear mailbox reception flag */
mb_filter_table[mb_num][0] = ( ((FLEXCANb_MBn_CS(_bus, mb_num) & 0x600000) ? 1UL : 0UL) << 27); /* extended flag check */
return 1;
}
FCTP_FUNC void FCTP_OPT::mailboxStatus() {
if ( FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FEN ) {
Serial.print("FIFO Enabled --> "); ( FLEXCANb_IMASK1(_bus) & FLEXCAN_IFLAG1_BUF5I ) ? Serial.println("Interrupt Enabled") : Serial.println("Interrupt Disabled");
Serial.print("\tFIFO Filters in use: ");
uint32_t remaining_mailboxes = FLEXCANb_MAXMB_SIZE(_bus) - 6 /* MAXMB - FIFO */ - ((((FLEXCANb_CTRL2(_bus) >> FLEXCAN_CTRL2_RFFN_BIT_NO) & 0xF) + 1) * 2);
if ( FLEXCANb_MAXMB_SIZE(_bus) < (6 + ((((FLEXCANb_CTRL2(_bus) >> FLEXCAN_CTRL2_RFFN_BIT_NO) & 0xF) + 1) * 2))) remaining_mailboxes = 0;
Serial.println(constrain((uint8_t)(FLEXCANb_MAXMB_SIZE(_bus) - remaining_mailboxes), 0, 32));
Serial.print("\tRemaining Mailboxes: ");
if ( FLEXCANb_MAXMB_SIZE(_bus) < (6 + ((((FLEXCANb_CTRL2(_bus) >> FLEXCAN_CTRL2_RFFN_BIT_NO) & 0xF) + 1) * 2))) remaining_mailboxes = 0;
Serial.println(remaining_mailboxes); // 8 filters per 2 mailboxes
for ( uint8_t i = FLEXCANb_MAXMB_SIZE(_bus) - remaining_mailboxes; i < FLEXCANb_MAXMB_SIZE(_bus); i++ ) {
switch ( FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, i)) ) {
case 0b0000: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: RX_INACTIVE"); break;
}
case 0b0100: {
Serial.print("\t\tMB"); Serial.print(i); Serial.print(" code: RX_EMPTY");
(FLEXCANb_MBn_CS(_bus, i) & FLEXCAN_MB_CS_IDE) ? Serial.println("\t(Extended Frame)") : Serial.println("\t(Standard Frame)");
break;
}
case 0b0010: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: RX_FULL"); break;
}
case 0b0110: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: RX_OVERRUN"); break;
}
case 0b1010: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: RX_RANSWER"); break;
}
case 0b0001: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: RX_BUSY"); break;
}
case 0b1000: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: TX_INACTIVE"); break;
}
case 0b1001: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: TX_ABORT"); break;
}
case 0b1100: {
Serial.print("\t\tMB"); Serial.print(i); Serial.print(" code: TX_DATA (Transmitting)");
uint32_t extid = (FLEXCANb_MBn_CS(_bus, i) & FLEXCAN_MB_CS_IDE);
(extid) ? Serial.print("(Extended Frame)") : Serial.print("(Standard Frame)");
uint32_t dataIn = FLEXCANb_MBn_WORD0(_bus, i);
uint32_t id = (FLEXCANb_MBn_ID(_bus, i) & FLEXCAN_MB_ID_EXT_MASK);
if (!extid) id >>= FLEXCAN_MB_ID_STD_BIT_NO;
Serial.print("(ID: 0x"); Serial.print(id, HEX); Serial.print(")");
Serial.print("(Payload: "); Serial.print((uint8_t)(dataIn >> 24), HEX);
Serial.print(" "); Serial.print((uint8_t)(dataIn >> 16), HEX);
Serial.print(" "); Serial.print((uint8_t)(dataIn >> 8), HEX);
Serial.print(" "); Serial.print((uint8_t)dataIn, HEX);
dataIn = FLEXCANb_MBn_WORD1(_bus, i);
Serial.print(" "); Serial.print((uint8_t)(dataIn >> 24), HEX);
Serial.print(" "); Serial.print((uint8_t)(dataIn >> 16), HEX);
Serial.print(" "); Serial.print((uint8_t)(dataIn >> 8), HEX);
Serial.print(" "); Serial.print((uint8_t)dataIn, HEX);
Serial.println(")");
break;
}
case 0b1110: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: TX_TANSWER"); break;
}
}
} // for loop
return;
} // fifo detected ends here
Serial.print("FIFO Disabled\n\tMailboxes:\n");
for ( uint8_t i = 0; i < FLEXCANb_MAXMB_SIZE(_bus); i++ ) {
switch ( FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, i)) ) {
case 0b0000: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: RX_INACTIVE"); break;
}
case 0b0100: {
Serial.print("\t\tMB"); Serial.print(i); Serial.print(" code: RX_EMPTY");
(FLEXCANb_MBn_CS(_bus, i) & FLEXCAN_MB_CS_IDE) ? Serial.println("\t(Extended Frame)") : Serial.println("\t(Standard Frame)");
break;
}
case 0b0010: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: RX_FULL"); break;
}
case 0b0110: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: RX_OVERRUN"); break;
}
case 0b1010: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: RX_RANSWER"); break;
}
case 0b0001: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: RX_BUSY"); break;
}
case 0b1000: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: TX_INACTIVE"); break;
}
case 0b1001: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: TX_ABORT"); break;
}
case 0b1100: {
Serial.print("\t\tMB"); Serial.print(i); Serial.print(" code: TX_DATA (Transmitting)");
uint32_t extid = (FLEXCANb_MBn_CS(_bus, i) & FLEXCAN_MB_CS_IDE);
(extid) ? Serial.print("(Extended Frame)") : Serial.print("(Standard Frame)");
uint32_t dataIn = FLEXCANb_MBn_WORD0(_bus, i);
uint32_t id = (FLEXCANb_MBn_ID(_bus, i) & FLEXCAN_MB_ID_EXT_MASK);
if (!extid) id >>= FLEXCAN_MB_ID_STD_BIT_NO;
Serial.print("(ID: 0x"); Serial.print(id, HEX); Serial.print(")");
Serial.print("(Payload: "); Serial.print((uint8_t)(dataIn >> 24), HEX);
Serial.print(" "); Serial.print((uint8_t)(dataIn >> 16), HEX);
Serial.print(" "); Serial.print((uint8_t)(dataIn >> 8), HEX);
Serial.print(" "); Serial.print((uint8_t)dataIn, HEX);
dataIn = FLEXCANb_MBn_WORD1(_bus, i);
Serial.print(" "); Serial.print((uint8_t)(dataIn >> 24), HEX);
Serial.print(" "); Serial.print((uint8_t)(dataIn >> 16), HEX);
Serial.print(" "); Serial.print((uint8_t)(dataIn >> 8), HEX);
Serial.print(" "); Serial.print((uint8_t)dataIn, HEX);
Serial.println(")");
break;
}
case 0b1110: {
Serial.print("\t\tMB"); Serial.print(i); Serial.println(" code: TX_TANSWER"); break;
}
}
} // for loop
}
FCTP_FUNC uint64_t FCTP_OPT::readIFLAG() {
#if defined(__IMXRT1062__)
return (((uint64_t)FLEXCANb_IFLAG2(_bus) << 32) | FLEXCANb_IFLAG1(_bus));
#endif
return FLEXCANb_IFLAG1(_bus);
}
FCTP_FUNC void FCTP_OPT::writeIFLAG(uint64_t value) {
#if defined(__IMXRT1062__)
FLEXCANb_IFLAG2(_bus) = value >> 32;
#endif
FLEXCANb_IFLAG1(_bus) = value;
}
FCTP_FUNC void FCTP_OPT::writeIFLAGBit(uint8_t mb_num) {
if ( mb_num < 32 ) FLEXCANb_IFLAG1(_bus) |= (1UL << mb_num);
else FLEXCANb_IFLAG2(_bus) |= (1UL << (mb_num - 32));
}
FCTP_FUNC void FCTP_OPT::writeIMASK(uint64_t value) {
#if defined(__IMXRT1062__)
FLEXCANb_IMASK2(_bus) = value >> 32;
#endif
FLEXCANb_IMASK1(_bus) = value;
}
FCTP_FUNC uint64_t FCTP_OPT::readIMASK() {
#if defined(__IMXRT1062__)
return (((uint64_t)FLEXCANb_IMASK2(_bus) << 32) | FLEXCANb_IMASK1(_bus));
#endif
return FLEXCANb_IMASK1(_bus);
}
FCTP_FUNC void FCTP_OPT::writeIMASKBit(uint8_t mb_num, bool set) {
if ( mb_num < 32 ) (( set ) ? FLEXCANb_IMASK1(_bus) |= (1UL << mb_num) : FLEXCANb_IMASK1(_bus) &= ~(1UL << mb_num));
else (( set ) ? FLEXCANb_IMASK2(_bus) |= (1UL << (mb_num - 32)) : FLEXCANb_IMASK2(_bus) &= ~(1UL << (mb_num - 32)));
}
FCTP_FUNC void FCTP_OPT::writeTxMailbox(uint8_t mb_num, const CAN_message_t &msg) {
writeIFLAGBit(mb_num);
uint32_t code = 0;
volatile uint32_t *mbxAddr = &(*(volatile uint32_t*)(_bus + 0x80 + (mb_num * 0x10)));
mbxAddr[0] = FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_TX_INACTIVE);
mbxAddr[1] = (( msg.flags.extended ) ? ( msg.id & FLEXCAN_MB_ID_EXT_MASK ) : FLEXCAN_MB_ID_IDSTD(msg.id));
if ( msg.flags.remote ) code |= (1UL << 20);
if ( msg.flags.extended ) code |= (3UL << 21);
for ( uint8_t i = 0; i < (8 >> 2); i++ ) mbxAddr[2 + i] = (msg.buf[0 + i * 4] << 24) | (msg.buf[1 + i * 4] << 16) | (msg.buf[2 + i * 4] << 8) | msg.buf[3 + i * 4];
code |= msg.len << 16;
mbxAddr[0] = code | FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_TX_ONCE);
}
FCTP_FUNC uint8_t FCTP_OPT::mailboxOffset() {
if ( !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FEN ) ) return 0; /* return offset 0 since FIFO is disabled */
uint32_t remaining_mailboxes = FLEXCANb_MAXMB_SIZE(_bus) - 6 /* MAXMB - FIFO */ - ((((FLEXCANb_CTRL2(_bus) >> FLEXCAN_CTRL2_RFFN_BIT_NO) & 0xF) + 1) * 2);
if ( FLEXCANb_MAXMB_SIZE(_bus) < (6 + ((((FLEXCANb_CTRL2(_bus) >> FLEXCAN_CTRL2_RFFN_BIT_NO) & 0xF) + 1) * 2))) remaining_mailboxes = 0;
return (FLEXCANb_MAXMB_SIZE(_bus) - remaining_mailboxes); /* otherwise return offset MB position after FIFO area */
}
FCTP_FUNC void FCTP_OPT::setMaxMB(uint8_t last) {
last = constrain(last,1,64);
last--;
FLEXCAN_EnterFreezeMode();
bool fifo_was_cleared = FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FEN;
disableFIFO();
writeIFLAG(readIFLAG()); // (all bits reset when written back) (needed for MAXMB changes)
FLEXCANb_MCR(_bus) &= ~0x7F; // clear current value
FLEXCANb_MCR(_bus) |= last; // set mailbox max
if ( fifo_was_cleared ) enableFIFO();
FLEXCAN_ExitFreezeMode();
}
FCTP_FUNC void FCTP_OPT::softReset() {
FLEXCANb_MCR(_bus) |= FLEXCAN_MCR_SOFT_RST;
while (FLEXCANb_MCR(_bus) & FLEXCAN_MCR_SOFT_RST);
}
FCTP_FUNC void FCTP_OPT::FLEXCAN_ExitFreezeMode() {
FLEXCANb_MCR(_bus) &= ~FLEXCAN_MCR_HALT;
while (FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FRZ_ACK);
}
FCTP_FUNC void FCTP_OPT::FLEXCAN_EnterFreezeMode() {
FLEXCANb_MCR(_bus) |= FLEXCAN_MCR_FRZ | FLEXCAN_MCR_HALT;
while (!(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FRZ_ACK));
}
FCTP_FUNC void FCTP_OPT::setBaudRate(uint32_t baud) {
currentBitrate = baud;
#if defined(__IMXRT1062__)
uint32_t clockFreq = getClock() * 1000000;
#else
uint32_t clockFreq = 16000000;
#endif
uint32_t divisor = 0, bestDivisor = 0, result = clockFreq / baud / (divisor + 1);
int error = baud - (clockFreq / (result * (divisor + 1))), bestError = error;
bool frz_flag_negate = !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FRZ_ACK);
FLEXCAN_EnterFreezeMode();
while (result > 5) {
divisor++;
result = clockFreq / baud / (divisor + 1);
if (result <= 25) {
error = baud - (clockFreq / (result * (divisor + 1)));
if (error < 0) error *= -1;
if (error < bestError) {
bestError = error;
bestDivisor = divisor;
}
if ((error == bestError) && (result > 11) && (result < 19)) {
bestError = error;
bestDivisor = divisor;
}
}
}
divisor = bestDivisor;
result = clockFreq / baud / (divisor + 1);
if ((result < 5) || (result > 25) || (bestError > 300)) {
if ( frz_flag_negate ) FLEXCAN_ExitFreezeMode();
return;
}
result -= 5; // the bitTimingTable is offset by 5 since there was no reason to store bit timings for invalid numbers
uint8_t bitTimingTable[21][3] = {
{0, 0, 1}, //5
{1, 0, 1}, //6
{1, 1, 1}, //7
{2, 1, 1}, //8
{2, 2, 1}, //9
{2, 3, 1}, //10
{2, 3, 2}, //11
{2, 4, 2}, //12
{2, 5, 2}, //13
{2, 5, 3}, //14
{2, 6, 3}, //15
{2, 7, 3}, //16
{2, 7, 4}, //17
{3, 7, 4}, //18
{3, 7, 5}, //19
{4, 7, 5}, //20
{4, 7, 6}, //21
{5, 7, 6}, //22
{6, 7, 6}, //23
{6, 7, 7}, //24
{7, 7, 7}, //25
}, propSeg = bitTimingTable[result][0], pSeg1 = bitTimingTable[result][1], pSeg2 = bitTimingTable[result][2];
FLEXCANb_CTRL1(_bus) = (FLEXCAN_CTRL_PROPSEG(propSeg) | FLEXCAN_CTRL_RJW(1) | FLEXCAN_CTRL_PSEG1(pSeg1) |
FLEXCAN_CTRL_PSEG2(pSeg2) | FLEXCAN_CTRL_ERR_MSK | FLEXCAN_CTRL_PRESDIV(divisor));
FLEXCANb_CTRL1(_bus) &= ~FLEXCAN_CTRL_LOM; /* disable listen-only mode */
if ( frz_flag_negate ) FLEXCAN_ExitFreezeMode();
}
FCTP_FUNC void FCTP_OPT::setMRP(bool mrp) { /* mailbox priority (1) or FIFO priority (0) */
FLEXCAN_EnterFreezeMode();
if ( mrp ) FLEXCANb_CTRL2(_bus) |= FLEXCAN_CTRL2_MRP;
else FLEXCANb_CTRL2(_bus) &= ~FLEXCAN_CTRL2_MRP;
FLEXCAN_ExitFreezeMode();
}
FCTP_FUNC void FCTP_OPT::setRRS(bool rrs) { /* store remote frames */
FLEXCAN_EnterFreezeMode();
if ( rrs ) FLEXCANb_CTRL2(_bus) |= FLEXCAN_CTRL2_RRS;
else FLEXCANb_CTRL2(_bus) &= ~FLEXCAN_CTRL2_RRS;
FLEXCAN_ExitFreezeMode();
}
FCTP_FUNC void FCTP_OPT::setTx(FLEXCAN_PINS pin) {
#if defined(__IMXRT1062__)
if ( _bus == CAN3 ) {
if ( pin == DEF ) {
IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_36 = 0x19; // pin31 T3B2
IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_36 = 0x10B0; // pin31 T3B2
}
}
if ( _bus == CAN2 ) {
if ( pin == DEF ) {
IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B0_02 = 0x10; // pin 1 T4B1+B2
IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B0_02 = 0x10B0; // pin 1 T4B1+B2
}
}
if ( _bus == CAN1 ) {
if ( pin == DEF ) {
IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_08 = 0x12; // pin 22 T4B1+B2
IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_08 = 0x10B0; // pin 22 T4B1+B2
}
}
#endif
#if defined(__MK20DX256__)
CORE_PIN3_CONFIG = PORT_PCR_MUX(2);
#endif
#if defined(__MK64FX512__) || defined(__MK66FX1M0__)
if ( _bus == CAN0 ) {
if ( pin == ALT ) {
CORE_PIN3_CONFIG = 0; CORE_PIN29_CONFIG = PORT_PCR_MUX(2);
}
else if ( pin == DEF ) {
CORE_PIN29_CONFIG = 0; CORE_PIN3_CONFIG = PORT_PCR_MUX(2);
}
} /* Alternative CAN1 pins are not broken out on Teensy 3.6 */
#endif
#if defined(__MK66FX1M0__)
if ( _bus == CAN1 ) {
CORE_PIN33_CONFIG = PORT_PCR_MUX(2);
}
#endif
}
FCTP_FUNC void FCTP_OPT::setRx(FLEXCAN_PINS pin) {
#if defined(__IMXRT1062__)
/* DAISY REGISTER CAN3
00 GPIO_EMC_37_ALT9 — Selecting Pad: GPIO_EMC_37 for Mode: ALT9
01 GPIO_AD_B0_15_ALT8 — Selecting Pad: GPIO_AD_B0_15 for Mode: ALT8
10 GPIO_AD_B0_11_ALT8 — Selecting Pad: GPIO_AD_B0_11 for Mode: ALT8
*/
/* DAISY REGISTER CAN2
00 GPIO_EMC_10_ALT3 — Selecting Pad: GPIO_EMC_10 for Mode: ALT3
01 GPIO_AD_B0_03_ALT0 — Selecting Pad: GPIO_AD_B0_03 for Mode: ALT0
10 GPIO_AD_B0_15_ALT6 — Selecting Pad: GPIO_AD_B0_15 for Mode: ALT6
11 GPIO_B1_09_ALT6 — Selecting Pad: GPIO_B1_09 for Mode: ALT6
*/
/* DAISY REGISTER CAN1
00 GPIO_SD_B1_03_ALT4 — Selecting Pad: GPIO_SD_B1_03 for Mode: ALT4
01 GPIO_EMC_18_ALT3 — Selecting Pad: GPIO_EMC_18 for Mode: ALT3
10 GPIO_AD_B1_09_ALT2 — Selecting Pad: GPIO_AD_B1_09 for Mode: ALT2
11 GPIO_B0_03_ALT2 — Selecting Pad: GPIO_B0_03 for Mode: ALT2
*/
if ( _bus == CAN3 ) {
if ( pin == DEF ) {
IOMUXC_CANFD_IPP_IND_CANRX_SELECT_INPUT = 0x00;
IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_37 = 0x19; // pin30 T3B2
IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_37 = 0x10B0; // pin30 T3B2
}
}
if ( _bus == CAN2 ) {
if ( pin == DEF ) {
IOMUXC_FLEXCAN2_RX_SELECT_INPUT = 0x01;
IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B0_03 = 0x10; // pin 0 T4B1+B2
IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B0_03 = 0x10B0; // pin 0 T4B1+B2
}
}
if ( _bus == CAN1 ) {
if ( pin == DEF ) {
IOMUXC_FLEXCAN1_RX_SELECT_INPUT = 0x02;
IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_09 = 0x12; // pin 23 T4B1+B2
IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_09 = 0x10B0; // pin 23 T4B1+B2
}
}
#endif
#if defined(__MK20DX256__)
CORE_PIN4_CONFIG = PORT_PCR_MUX(2);
#endif
#if defined(__MK64FX512__) || defined(__MK66FX1M0__)
if ( _bus == CAN0 ) {
if ( pin == ALT ) {
CORE_PIN4_CONFIG = 0; CORE_PIN30_CONFIG = PORT_PCR_MUX(2);
}
else if ( pin == DEF ) {
CORE_PIN30_CONFIG = 0; CORE_PIN4_CONFIG = PORT_PCR_MUX(2);
}
} /* Alternative CAN1 pins are not broken out on Teensy 3.6 */
#endif
#if defined(__MK66FX1M0__)
if ( _bus == CAN1 ) {
CORE_PIN34_CONFIG = PORT_PCR_MUX(2);
}
#endif
}
FCTP_FUNC void FCTP_OPT::setMBFilterProcessing(FLEXCAN_MAILBOX mb_num, uint32_t filter_id, uint32_t calculated_mask) {
bool frz_flag_negate = !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FRZ_ACK);
FLEXCAN_EnterFreezeMode();
FLEXCANb_RXIMR(_bus, mb_num) = calculated_mask | ((FLEXCANb_CTRL2(_bus) & FLEXCAN_CTRL2_EACEN) ? (1UL << 30) : 0);
FLEXCANb_MBn_ID(_bus, mb_num) = ((!(FLEXCANb_MBn_CS(_bus, mb_num) & FLEXCAN_MB_CS_IDE)) ? FLEXCAN_MB_ID_IDSTD(filter_id) : FLEXCAN_MB_ID_IDEXT(filter_id));
if ( frz_flag_negate ) FLEXCAN_ExitFreezeMode();
}
FCTP_FUNC void FCTP_OPT::setMBFilter(FLEXCAN_FLTEN input) {
bool frz_flag_negate = !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FRZ_ACK);
FLEXCAN_EnterFreezeMode();
for (uint8_t i = mailboxOffset(); i < FLEXCANb_MAXMB_SIZE(_bus); i++) {
if ( (FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, i)) >> 3) ) continue; /* skip TX mailboxes */
if ( input == ACCEPT_ALL ) FLEXCANb_RXIMR(_bus, i) = 0UL | ((FLEXCANb_CTRL2(_bus) & FLEXCAN_CTRL2_EACEN) ? (1UL << 30) : 0); // (RXIMR)
if ( input == REJECT_ALL ) FLEXCANb_RXIMR(_bus, i) = ~0UL; // (RXIMR)
FLEXCANb_MBn_ID(_bus, i) = ~0UL;
mb_filter_table[i][0] = ( ((FLEXCANb_MBn_CS(_bus, i) & 0x600000) ? 1UL : 0UL) << 27); /* extended flag check */
}
if ( frz_flag_negate ) FLEXCAN_ExitFreezeMode();
}
FCTP_FUNC void FCTP_OPT::setMBFilter(FLEXCAN_MAILBOX mb_num, FLEXCAN_FLTEN input) {
if ( mb_num < mailboxOffset() || mb_num >= FLEXCANb_MAXMB_SIZE(_bus) ) return; /* mailbox not available */
if ( (FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, mb_num)) >> 3) ) return; /* exit on TX mailbox */
bool frz_flag_negate = !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FRZ_ACK);
FLEXCAN_EnterFreezeMode();
if ( input == ACCEPT_ALL ) FLEXCANb_RXIMR(_bus, mb_num) = 0UL | ((FLEXCANb_CTRL2(_bus) & FLEXCAN_CTRL2_EACEN) ? (1UL << 30) : 0); // (RXIMR)
if ( input == REJECT_ALL ) FLEXCANb_RXIMR(_bus, mb_num) = ~0UL; // (RXIMR)
FLEXCANb_MBn_ID(_bus, mb_num) = 0UL;
mb_filter_table[mb_num][0] = ( ((FLEXCANb_MBn_CS(_bus, mb_num) & 0x600000) ? 1UL : 0UL) << 27); /* extended flag check */
if ( frz_flag_negate ) FLEXCAN_ExitFreezeMode();
}
FCTP_FUNC bool FCTP_OPT::setMBFilter(FLEXCAN_MAILBOX mb_num, uint32_t id1) {
if ( mb_num < mailboxOffset() || mb_num >= FLEXCANb_MAXMB_SIZE(_bus) ) return 0; /* mailbox not available */
if ( (FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, mb_num)) >> 3) ) return 0; /* exit on TX mailbox */
uint32_t mask = ( !(FLEXCANb_MBn_CS(_bus, mb_num) & FLEXCAN_MB_CS_IDE) ) ? FLEXCAN_MB_ID_IDSTD(((id1) ^ (id1)) ^ 0x7FF) : FLEXCAN_MB_ID_IDEXT(((id1) ^ (id1)) ^ 0x1FFFFFFF);
setMBFilterProcessing(mb_num,id1,mask);
filter_store(FLEXCAN_MULTI, mb_num, 1, id1, 0, 0, 0, 0);
return 1;
}
FCTP_FUNC bool FCTP_OPT::setMBFilter(FLEXCAN_MAILBOX mb_num, uint32_t id1, uint32_t id2) {
if ( mb_num < mailboxOffset() || mb_num >= FLEXCANb_MAXMB_SIZE(_bus) ) return 0; /* mailbox not available */
if ( (FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, mb_num)) >> 3) ) return 0; /* exit on TX mailbox */
uint32_t mask = ( !(FLEXCANb_MBn_CS(_bus, mb_num) & FLEXCAN_MB_CS_IDE) ) ? FLEXCAN_MB_ID_IDSTD(((id1 | id2) ^ (id1 & id2)) ^ 0x7FF) : FLEXCAN_MB_ID_IDEXT(((id1 | id2) ^ (id1 & id2)) ^ 0x1FFFFFFF);
setMBFilterProcessing(mb_num,id1,mask);
filter_store(FLEXCAN_MULTI, mb_num, 2, id1, id2, 0, 0, 0);
return 1;
}
FCTP_FUNC bool FCTP_OPT::setMBFilter(FLEXCAN_MAILBOX mb_num, uint32_t id1, uint32_t id2, uint32_t id3) {
if ( mb_num < mailboxOffset() || mb_num >= FLEXCANb_MAXMB_SIZE(_bus) ) return 0; /* mailbox not available */
if ( (FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, mb_num)) >> 3) ) return 0; /* exit on TX mailbox */
uint32_t mask = ( !(FLEXCANb_MBn_CS(_bus, mb_num) & FLEXCAN_MB_CS_IDE) ) ? FLEXCAN_MB_ID_IDSTD(((id1 | id2 | id3) ^ (id1 & id2 & id3)) ^ 0x7FF) : FLEXCAN_MB_ID_IDEXT(((id1 | id2 | id3) ^ (id1 & id2 & id3)) ^ 0x1FFFFFFF);
setMBFilterProcessing(mb_num,id1,mask);
filter_store(FLEXCAN_MULTI, mb_num, 3, id1, id2, id3, 0, 0);
return 1;
}
FCTP_FUNC bool FCTP_OPT::setMBFilter(FLEXCAN_MAILBOX mb_num, uint32_t id1, uint32_t id2, uint32_t id3, uint32_t id4) {
if ( mb_num < mailboxOffset() || mb_num >= FLEXCANb_MAXMB_SIZE(_bus) ) return 0; /* mailbox not available */
if ( (FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, mb_num)) >> 3) ) return 0; /* exit on TX mailbox */
uint32_t mask = ( !(FLEXCANb_MBn_CS(_bus, mb_num) & FLEXCAN_MB_CS_IDE) ) ? FLEXCAN_MB_ID_IDSTD(((id1 | id2 | id3 | id4) ^ (id1 & id2 & id3 & id4)) ^ 0x7FF) : FLEXCAN_MB_ID_IDEXT(((id1 | id2 | id3 | id4) ^ (id1 & id2 & id3 & id4)) ^ 0x1FFFFFFF);
setMBFilterProcessing(mb_num,id1,mask);
filter_store(FLEXCAN_MULTI, mb_num, 4, id1, id2, id3, id4, 0);
return 1;
}
FCTP_FUNC bool FCTP_OPT::setMBFilter(FLEXCAN_MAILBOX mb_num, uint32_t id1, uint32_t id2, uint32_t id3, uint32_t id4, uint32_t id5) {
if ( mb_num < mailboxOffset() || mb_num >= FLEXCANb_MAXMB_SIZE(_bus) ) return 0; /* mailbox not available */
if ( (FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, mb_num)) >> 3) ) return 0; /* exit on TX mailbox */
uint32_t mask = ( !(FLEXCANb_MBn_CS(_bus, mb_num) & FLEXCAN_MB_CS_IDE) ) ? FLEXCAN_MB_ID_IDSTD(((id1 | id2 | id3 | id4 | id5) ^ (id1 & id2 & id3 & id4 & id5)) ^ 0x7FF) : FLEXCAN_MB_ID_IDEXT(((id1 | id2 | id3 | id4 | id5) ^ (id1 & id2 & id3 & id4 & id5)) ^ 0x1FFFFFFF);
setMBFilterProcessing(mb_num,id1,mask);
filter_store(FLEXCAN_MULTI, mb_num, 5, id1, id2, id3, id4, id5);
return 1;
}
FCTP_FUNC bool FCTP_OPT::setMBFilterRange(FLEXCAN_MAILBOX mb_num, uint32_t id1, uint32_t id2) {
if ( mb_num < mailboxOffset() || mb_num >= FLEXCANb_MAXMB_SIZE(_bus) ) return 0; /* mailbox not available */
if ( (FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, mb_num)) >> 3) ) return 0; /* exit on TX mailbox */
if ( id1 > id2 || ((id2 > id1) && (id2-id1>1000)) || !id1 || !id2 ) return 0; /* don't play around... */
uint32_t stage1 = id1, stage2 = id1;
for ( uint32_t i = id1 + 1; i <= id2; i++ ) {
stage1 |= i; stage2 &= i;
}
uint32_t mask = ( !(FLEXCANb_MBn_CS(_bus, mb_num) & FLEXCAN_MB_CS_IDE) ) ? FLEXCAN_MB_ID_IDSTD( (stage1 ^ stage2) ^ 0x1FFFFFFF ) : FLEXCAN_MB_ID_IDEXT( (stage1 ^ stage2) ^ 0x1FFFFFFF );
setMBFilterProcessing(mb_num,id1,mask);
filter_store(FLEXCAN_RANGE, mb_num, 2, id1, id2, 0, 0, 0);
return 1;
}
FCTP_FUNC int FCTP_OPT::readFIFO(CAN_message_t &msg) {
if ( !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FEN) ) return 0; /* FIFO is disabled */
if ( FLEXCANb_IMASK1(_bus) & FLEXCAN_IMASK1_BUF5M ) return 0; /* FIFO interrupt enabled, polling blocked */
if ( FLEXCANb_IFLAG1(_bus) & FLEXCAN_IFLAG1_BUF5I ) { /* message available */
volatile uint32_t *mbxAddr = &(*(volatile uint32_t*)(_bus + 0x80 + (0 * 0x10)));
uint32_t code = mbxAddr[0];
msg.len = (code & 0xF0000) >> 16;
msg.flags.remote = (bool)(code & (1UL << 20));
msg.flags.extended = (bool)(code & (1UL << 21));
msg.timestamp = code & 0xFFFF;
msg.id = (mbxAddr[1] & 0x1FFFFFFF) >> ((msg.flags.extended) ? 0 : 18);
for ( uint8_t i = 0; i < (8 >> 2); i++ ) for ( int8_t d = 0; d < 4 ; d++ ) msg.buf[(4 * i) + 3 - d] = (uint8_t)(mbxAddr[2 + i] >> (8 * d));
msg.bus = busNumber;
msg.mb = FIFO; /* store the mailbox the message came from (for callback reference) */
writeIFLAGBit(5); /* clear FIFO bit only! */
frame_distribution(msg);
if ( filter_match((FLEXCAN_MAILBOX)msg.mb, msg.id) ) return 1;
}
return 0; /* message not available */
}
FCTP_FUNC int FCTP_OPT::getFirstTxBox() {
for (uint8_t i = mailboxOffset(); i < FLEXCANb_MAXMB_SIZE(_bus); i++) {
if ( (FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, i)) >> 3) ) return i; // if TX
}
return -1;
}
FCTP_FUNC int FCTP_OPT::read(CAN_message_t &msg) {
bool _random = random(0, 2);
if ( ( !_random ) && ( FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FEN ) &&
!( FLEXCANb_IMASK1(_bus) & FLEXCAN_IMASK1_BUF5M ) &&
( FLEXCANb_IFLAG1(_bus) & FLEXCAN_IFLAG1_BUF5I ) ) return readFIFO(msg);
return readMB(msg);
}
FCTP_FUNC int FCTP_OPT::readMB(CAN_message_t &msg) {
uint64_t iflag = 0;
for ( uint8_t cycle_limit = 3, mailboxes = mailboxOffset(); mailbox_reader_increment <= FLEXCANb_MAXMB_SIZE(_bus); ++mailbox_reader_increment ) {
iflag = readIFLAG();
if ( iflag && (mailbox_reader_increment >= (64 - __builtin_clzll(iflag))) ) { /* break from MSB's if unset, add 1 to prevent undefined behaviour in clz for 0 check */
mailbox_reader_increment = mailboxOffset();
if ( !--cycle_limit ) return 0;
}
if ( FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FEN ) { /* FIFO is enabled, get only remaining RX (if any) */
if ( mailbox_reader_increment < mailboxes ) mailbox_reader_increment = mailboxes - 1; /* go back to position end of fifo+filter region */
}
if ( mailbox_reader_increment >= FLEXCANb_MAXMB_SIZE(_bus) ) {
mailbox_reader_increment = mailboxOffset();
if ( !--cycle_limit ) return 0;
}
volatile uint32_t *mbxAddr = &(*(volatile uint32_t*)(_bus + 0x80 + (mailbox_reader_increment * 0x10)));
if ((readIMASK() & (1ULL << mailbox_reader_increment))) continue; /* don't read interrupt enabled mailboxes */
uint32_t code = mbxAddr[0];
if ( (FLEXCAN_get_code(code) >> 3) ) continue; /* skip TX mailboxes */
//if (!(code & 0x600000) && !(iflag & (1ULL << mailbox_reader_increment))) continue; /* don't read unflagged mailboxes, errata: extended mailboxes iflags do not work in poll mode, must check CS field */
if ( ( FLEXCAN_get_code(code) == FLEXCAN_MB_CODE_RX_FULL ) ||
( FLEXCAN_get_code(code) == FLEXCAN_MB_CODE_RX_OVERRUN ) ) {
msg.flags.remote = (bool)(code & (1UL << 20));
msg.flags.extended = (bool)(code & (1UL << 21));
msg.id = (mbxAddr[1] & 0x1FFFFFFF) >> ((msg.flags.extended) ? 0 : 18);
if ( FLEXCAN_get_code(code) == FLEXCAN_MB_CODE_RX_OVERRUN ) msg.flags.overrun = 1;
msg.len = (code & 0xF0000) >> 16;
msg.mb = mailbox_reader_increment++;
msg.timestamp = code & 0xFFFF;
msg.bus = busNumber;
for ( uint8_t i = 0; i < (8 >> 2); i++ ) for ( int8_t d = 0; d < 4 ; d++ ) msg.buf[(4 * i) + 3 - d] = (uint8_t)(mbxAddr[2 + i] >> (8 * d));
mbxAddr[0] = FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_RX_EMPTY) | ((msg.flags.extended) ? (FLEXCAN_MB_CS_SRR | FLEXCAN_MB_CS_IDE) : 0);
(void)FLEXCANb_TIMER(_bus);
writeIFLAGBit(msg.mb);
frame_distribution(msg);
if ( filter_match((FLEXCAN_MAILBOX)msg.mb, msg.id) ) return 1;
}
}
return 0; /* no messages available */
}
FCTP_FUNC void FCTP_OPT::struct2queueTx(const CAN_message_t &msg) {
uint8_t buf[sizeof(CAN_message_t)];
memmove(buf, &msg, sizeof(msg));
txBuffer.push_back(buf, sizeof(CAN_message_t));
}
FCTP_FUNC int FCTP_OPT::write(FLEXCAN_MAILBOX mb_num, const CAN_message_t &msg) {
if ( mb_num < mailboxOffset() ) return 0; /* FIFO doesn't transmit */
volatile uint32_t *mbxAddr = &(*(volatile uint32_t*)(_bus + 0x80 + (mb_num * 0x10)));
if ( !((FLEXCAN_get_code(mbxAddr[0])) >> 3) ) return 0; /* not a transmit mailbox */
if ( msg.seq && FLEXCAN_get_code(mbxAddr[0]) != FLEXCAN_MB_CODE_TX_INACTIVE ) return 0; /* non blocking resend sequential frames */
uint32_t timeout = millis();
while ( FLEXCAN_get_code(mbxAddr[0]) != FLEXCAN_MB_CODE_TX_INACTIVE ) {
if ( millis() - timeout > 100 ) return 0;
}
writeTxMailbox(mb_num, msg);
return 1; // transmit entry accepted //
}
FCTP_FUNC int FCTP_OPT::write(const CAN_message_t &msg) {
if ( msg.seq ) {
if ( !write((FLEXCAN_MAILBOX)getFirstTxBox(), msg) ) struct2queueTx(msg);
return 1;
}
for (uint8_t i = mailboxOffset(); i < FLEXCANb_MAXMB_SIZE(_bus); i++) {
if ( FLEXCAN_get_code(FLEXCANb_MBn_CS(_bus, i)) == FLEXCAN_MB_CODE_TX_INACTIVE ) {
writeTxMailbox(i, msg);
return 1; /* transmit entry accepted */
}
}
return 0; /* transmit entry failed, no mailboxes or queues available */
}
FCTP_FUNC void FCTP_OPT::onReceive(const FLEXCAN_MAILBOX &mb_num, _MB_ptr handler) {
if ( FIFO == mb_num ) {
_mbHandlers[0] = handler;
return;
}
_mbHandlers[mb_num] = handler;
}
FCTP_FUNC void FCTP_OPT::onReceive(_MB_ptr handler) {
_mainHandler = handler;
}
FCTP_FUNC uint64_t FCTP_OPT::events() {
if ( rxBuffer.size() ) {
CAN_message_t frame;
uint8_t buf[sizeof(CAN_message_t)];
rxBuffer.pop_front(buf, sizeof(CAN_message_t));
memmove(&frame, buf, sizeof(frame));
mbCallbacks((FLEXCAN_MAILBOX)frame.mb, frame);
}
if ( txBuffer.size() ) {
CAN_message_t frame;
uint8_t buf[sizeof(CAN_message_t)];
txBuffer.peek_front(buf, sizeof(CAN_message_t));
memmove(&frame, buf, sizeof(frame));
if ( write((FLEXCAN_MAILBOX)getFirstTxBox(), frame) ) txBuffer.pop_front();
}
return (uint64_t)(rxBuffer.size() << 12) | txBuffer.size();
}
#if defined(__IMXRT1062__)
static void flexcan_isr_can1() {
if ( _CAN1 ) _CAN1->flexcan_interrupt();
}
static void flexcan_isr_can2() {
if ( _CAN2 ) _CAN2->flexcan_interrupt();
}
static void flexcan_isr_can3() {
if ( _CAN3 ) _CAN3->flexcan_interrupt();
}
#endif
#if defined(__MK20DX256__) || defined(__MK64FX512__)
static void flexcan_isr_can0() {
if ( _CAN0 ) _CAN0->flexcan_interrupt();
}
#endif
#if defined(__MK66FX1M0__)
static void flexcan_isr_can0() {
if ( _CAN0 ) _CAN0->flexcan_interrupt();
}
static void flexcan_isr_can1() {
if ( _CAN1 ) _CAN1->flexcan_interrupt();
}
#endif
FCTP_FUNC void FCTP_OPT::mbCallbacks(const FLEXCAN_MAILBOX &mb_num, const CAN_message_t &msg) {
if ( mb_num == FIFO ) {
if ( _mbHandlers[0] ) _mbHandlers[0](msg);
if ( _mainHandler ) _mainHandler(msg);
return;
}
if ( _mbHandlers[mb_num] ) _mbHandlers[mb_num](msg);
if ( _mainHandler ) _mainHandler(msg);
}
FCTP_FUNC void FCTP_OPT::struct2queueRx(const CAN_message_t &msg) {
uint8_t buf[sizeof(CAN_message_t)];
memmove(buf, &msg, sizeof(msg));
rxBuffer.push_back(buf, sizeof(CAN_message_t));
}
FCTP_FUNC void FCTP_OPT::flexcan_interrupt() {
CAN_message_t msg; // setup a temporary storage buffer
uint64_t imask = readIMASK(), iflag = readIFLAG();
if ( (FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FEN) && (imask & FLEXCAN_IMASK1_BUF5M) && (iflag & FLEXCAN_IFLAG1_BUF5I) ) { /* FIFO is enabled, capture frames if triggered */
volatile uint32_t *mbxAddr = &(*(volatile uint32_t*)(_bus + 0x80 + (0 * 0x10)));
uint32_t code = mbxAddr[0];
msg.len = (code & 0xF0000) >> 16;
msg.flags.remote = (bool)(code & (1UL << 20));
msg.flags.extended = (bool)(code & (1UL << 21));
msg.timestamp = code & 0xFFFF;
msg.id = (mbxAddr[1] & 0x1FFFFFFF) >> ((msg.flags.extended) ? 0 : 18);
msg.idhit = code >> 23;
for ( uint8_t i = 0; i < (8 >> 2); i++ ) for ( int8_t d = 0; d < 4 ; d++ ) msg.buf[(4 * i) + 3 - d] = (uint8_t)(mbxAddr[2 + i] >> (8 * d));
msg.bus = busNumber;
msg.mb = FIFO; /* store the mailbox the message came from (for callback reference) */
(void)FLEXCANb_TIMER(_bus);
writeIFLAGBit(5); /* clear FIFO bit only! */
if ( iflag & FLEXCAN_IFLAG1_BUF6I ) writeIFLAGBit(6); /* clear FIFO bit only! */
if ( iflag & FLEXCAN_IFLAG1_BUF7I ) writeIFLAGBit(7); /* clear FIFO bit only! */
frame_distribution(msg);
ext_output1(msg);
ext_output2(msg);
ext_output3(msg);
if (fifo_filter_match(msg.id)) struct2queueRx(msg);
}
uint8_t exit_point = 64 - __builtin_clzll(iflag | 1); /* break from MSB's if unset, add 1 to prevent undefined behaviour in clz for 0 check */
for ( uint8_t mb_num = mailboxOffset(); mb_num < FLEXCANb_MAXMB_SIZE(_bus); mb_num++ ) {
if ( mb_num >= exit_point ) break; /* early exit from higher unflagged mailboxes */
if (!(imask & (1ULL << mb_num))) continue; /* don't read non-interrupt mailboxes */
if (!(iflag & (1ULL << mb_num))) continue; /* don't read unflagged mailboxes */
volatile uint32_t *mbxAddr = &(*(volatile uint32_t*)(_bus + 0x80 + (mb_num * 0x10)));
uint32_t code = mbxAddr[0];
if ( ( FLEXCAN_get_code(code) == FLEXCAN_MB_CODE_RX_FULL ) ||
( FLEXCAN_get_code(code) == FLEXCAN_MB_CODE_RX_OVERRUN ) ) {
msg.flags.extended = (bool)(code & (1UL << 21));
msg.id = (mbxAddr[1] & 0x1FFFFFFF) >> ((msg.flags.extended) ? 0 : 18);
if ( FLEXCAN_get_code(code) == FLEXCAN_MB_CODE_RX_OVERRUN ) msg.flags.overrun = 1;
msg.len = (code & 0xF0000) >> 16;
msg.mb = mb_num;
msg.timestamp = code & 0xFFFF;
msg.bus = busNumber;
for ( uint8_t i = 0; i < (8 >> 2); i++ ) for ( int8_t d = 0; d < 4 ; d++ ) msg.buf[(4 * i) + 3 - d] = (uint8_t)(mbxAddr[2 + i] >> (8 * d));
mbxAddr[0] = FLEXCAN_MB_CS_CODE(FLEXCAN_MB_CODE_RX_EMPTY) | ((msg.flags.extended) ? (FLEXCAN_MB_CS_SRR | FLEXCAN_MB_CS_IDE) : 0);
(void)FLEXCANb_TIMER(_bus);
writeIFLAGBit(mb_num);
if ( filter_match((FLEXCAN_MAILBOX)mb_num, msg.id) ) struct2queueRx(msg); /* store frame in queue */
frame_distribution(msg);
ext_output1(msg);
ext_output2(msg);
ext_output3(msg);
}
}
FLEXCANb_ESR1(_bus) |= FLEXCANb_ESR1(_bus);
}
FCTP_FUNC void FCTP_OPT::enableDMA(bool state) { /* only CAN3 supports this on 1062, untested */
bool frz_flag_negate = !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FRZ_ACK);
FLEXCAN_EnterFreezeMode();
( !state ) ? FLEXCANb_MCR(_bus) &= ~0x8000 : FLEXCANb_MCR(_bus) |= 0x8000;
if ( frz_flag_negate ) FLEXCAN_ExitFreezeMode();
}
FCTP_FUNC uint8_t FCTP_OPT::setRFFN(FLEXCAN_RFFN_TABLE rffn) {
bool frz_flag_negate = !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FRZ_ACK);
FLEXCAN_EnterFreezeMode();
FLEXCAN_set_rffn(FLEXCANb_CTRL2(_bus), rffn);
if ( frz_flag_negate ) FLEXCAN_ExitFreezeMode();
uint32_t remaining_mailboxes = FLEXCANb_MAXMB_SIZE(_bus) - 6 /* MAXMB - FIFO */ - ((((FLEXCANb_CTRL2(_bus) >> FLEXCAN_CTRL2_RFFN_BIT_NO) & 0xF) + 1) * 2);
if ( FLEXCANb_MAXMB_SIZE(_bus) < (6 + ((((FLEXCANb_CTRL2(_bus) >> FLEXCAN_CTRL2_RFFN_BIT_NO) & 0xF) + 1) * 2))) remaining_mailboxes = 0;
return constrain((uint8_t)(FLEXCANb_MAXMB_SIZE(_bus) - remaining_mailboxes), 0, 32);
}
FCTP_FUNC void FCTP_OPT::setFIFOFilter(const FLEXCAN_FLTEN &input) {
if ( !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FEN )) return; /* FIFO not enabled. */
uint8_t max_fifo_filters = (((FLEXCANb_CTRL2(_bus) >> FLEXCAN_CTRL2_RFFN_BIT_NO) & 0xF) + 1) * 8; // 8->128
bool frz_flag_negate = !(FLEXCANb_MCR(_bus) & FLEXCAN_MCR_FRZ_ACK);
FLEXCAN_EnterFreezeMode();
for (uint8_t i = 0; i < max_fifo_filters; i++) { /* block all ID's so filtering could be applied. */
if ( input == REJECT_ALL ) {
if ( ((FLEXCANb_MCR(_bus) & FLEXCAN_MCR_IDAM_MASK) >> FLEXCAN_MCR_IDAM_BIT_NO) == 0 ) { /* If Table A is chosen for FIFO */