mcp2515 icon indicating copy to clipboard operation
mcp2515 copied to clipboard

Microchip MCP2515 SPI CAN controller - Driver library for TI MCUs

Results 3 mcp2515 issues
Sort by recently updated
recently updated
newest added

On line 508 of mcp2515.c; can_w_bit(MCP2515_RXB0CTRL + rxb*0x10, MCP2515_RXB0CTRL_RXM0 | MCP2515_RXB0CTRL_RXM0, mode); Should be; can_w_bit(MCP2515_RXB0CTRL + rxb*0x10, MCP2515_RXB0CTRL_RXM1 | MCP2515_RXB0CTRL_RXM0, mode); Reason; This function is intended for setting a 2...

uint32_t can_parse_msgid(uint8_t *buf) { uint32_t ret = 0; if (buf[1] & 0x08) { // Extended message ID ret = ((uint32_t)(buf[0])

I'm posting this here rather than making a pull request as I'm not 100% sure if this is an issue with the library or how I am handling it. Consider...