File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
2
+ # [ 0.10.5]
3
+ - Fixed SineWaveCAN example vbus request timeout
4
+
2
5
# [ 0.10.4]
3
6
4
- # Fixes
5
7
- Updated can_helpers to remove some UB and make code run on Arduino boards more reliably
6
8
7
9
# [ 0.10.3]
8
10
9
- # Fixes
10
11
- Fixed CAN awaitMsg timeout; now actually milliseconds instead of seconds
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ void setup() {
210
210
// request bus voltage and current (1sec timeout)
211
211
Serial.println (" attempting to read bus voltage and current" );
212
212
Get_Bus_Voltage_Current_msg_t vbus;
213
- if (!odrv0.request (vbus, 1 )) {
213
+ if (!odrv0.request (vbus, 1000 )) {
214
214
Serial.println (" vbus request failed!" );
215
215
while (true ); // spin indefinitely
216
216
}
Original file line number Diff line number Diff line change 1
1
# https://arduino.github.io/arduino-cli/0.33/library-specification/
2
2
name =ODriveArduino
3
- version =0.10.4
3
+ version =0.10.5
4
4
author =ODrive Robotics Inc. <info@odriverobotics.com>
5
5
maintainer =ODrive Robotics Inc. <info@odriverobotics.com>
6
6
sentence =Library to control ODrive motor controllers
You can’t perform that action at this time.
0 commit comments