Hello,
I’m trying to send message from TCAN 4550 using external quartz 40MHz. Message to send are CAN2.0b with extended IDs.
The issue is when I try to send my message using TX Buffer 0, there is nothing on-going on CAN and I see that the message is still pending (by reading TXBRP)
Steps for transceiver configuration is done as follow :
1/ Clear status register 0x000CU (write 0xFFFFFFFF)
2/ Activate CANDOM and CANSLNT only (at 0x0830 register)
3/ If PWRON interrupt, then clear it (at 0x0820 register)
4/ Unlock protected registers
5/ Disactivate FD Operation (FDOE and BRSE = 0x00)
6/ Configure nominal timing, I want 500kbit with 81.3% SP :
Can you help for this section ? I think I'm correct with 40MHz crystal :
NBRP = 0x0001U /* 0x02 = 0x01 because transceiver interprete (val + 1) */
NTSEG1 = 0x1EU; /* 0x20 = 0x1E because minus 1 for sync bit and transceiver interprete (val + 1) */
NTSEG2 = 0x07U; /* 0x08 = 0x07 because transceiver interprete (val + 1) */
NSJW = 0x00U; /* 0x01 but 0x00 because transceiver interprete (val + 1) */
7/ Configure data bit timing even if not used
8/ Configure global filter (reject all remote frames, accept all other frames for test purpose)
9/ Configure MRAM :
- Clear all mram (fill with 0)
- 0x8000 : ID filter acceptance
- 0x8100 : RX Fifo
- 0x8200 : RX Buffer
- 0x8300 : TX Fifo
- 0x8400 : TX Buffer
10/ Lock protected registers
11/ Activate interrupt RF0N_EN for new message arrival
12/ Activate line interrupt : EINT0 = 0x01
13/ Set clock ref (40MHz)
14/ Set normal mode
15/ write my can message on tx buffer address
16/ write TXBAR 0x01
There is something I’m doing wrong ?
Thank you
Kevin