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 82c43aa commit 668977bCopy full SHA for 668977b
README.md
@@ -64,6 +64,23 @@ mcp2515.setLoopbackMode();
64
```
65
<br>
66
67
+<br>
68
+You can also set oscillator frequency for module when setting bitrate:
69
+```C++
70
+mcp2515.setBitrate(CAN_125KBPS, MCP_8MHZ);
71
+```
72
73
+The available clock speeds are listed as follows:
74
75
+enum CAN_CLOCK {
76
+ MCP_20MHZ,
77
+ MCP_16MHZ,
78
+ MCP_8MHZ
79
+};
80
81
+Default value is MCP_16MHZ
82
83
+
84
Note: To transfer data on high speed of CAN interface via UART dont forget to update UART baudrate as necessary.
85
86
##2. Frame data format
0 commit comments