We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1cd301 commit b514e6bCopy full SHA for b514e6b
src/MCP2515.cpp
@@ -91,6 +91,7 @@ int MCP2515Class::begin(long baudRate)
91
uint8_t cnf[3];
92
} CNF_MAPPER[] = {
93
{ (long)8E6, (long)1000E3, { 0x00, 0x80, 0x00 } },
94
+ { (long)8E6, (long)666666, { 0xC0, 0xB8, 0x01 } },
95
{ (long)8E6, (long)500E3, { 0x00, 0x90, 0x02 } },
96
{ (long)8E6, (long)250E3, { 0x00, 0xb1, 0x05 } },
97
{ (long)8E6, (long)200E3, { 0x00, 0xb4, 0x06 } },
@@ -104,6 +105,7 @@ int MCP2515Class::begin(long baudRate)
104
105
{ (long)8E6, (long)5E3, { 0x1f, 0xbf, 0x07 } },
106
107
{ (long)16E6, (long)1000E3, { 0x00, 0xd0, 0x82 } },
108
+ { (long)16E6, (long)666666, { 0xC0, 0xF8, 0x81 } },
109
{ (long)16E6, (long)500E3, { 0x00, 0xf0, 0x86 } },
110
{ (long)16E6, (long)250E3, { 0x41, 0xf1, 0x85 } },
111
{ (long)16E6, (long)200E3, { 0x01, 0xfa, 0x87 } },
0 commit comments