How can i transmit a table of int8_t elements without using any SDK ?
Example : i want to send a table (8bytes) in this forme :Int8_t tab[] = {1,2,3,4,5,6,7,8}
what should i put in my MBs payload fields ?
CAN0->RAMn[ 0*MSG_BUF_SIZE + 2] = ???? /* MB0 word 2: data word 0 */
CAN0->RAMn[ 0*MSG_BUF_SIZE + 3] = ???? /* MB0 word 3: data word 1 */
CAN0->RAMn[ 0*MSG_BUF_SIZE + 1] = ID /* MB0 word 1: Tx msg with STD ID 0x511 */
CAN0->RAMn[ 0*MSG_BUF_SIZE + 0] = configuration /* MB0 word 0: */