Skip to content

Commit 43c3bba

Browse files
committed
FW 3.40: Added vesc id to mc_values
1 parent a20c35b commit 43c3bba

27 files changed

+5
-1
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
=== FW 3.40 ===
2+
* Added motor controller ID to COMM_GET_VALUES.
3+
14
=== FW 3.39 ===
25
* Updated HW75_300.
36
* Added AUX output support.
16 Bytes
Binary file not shown.
16 Bytes
Binary file not shown.
Binary file not shown.
16 Bytes
Binary file not shown.
16 Bytes
Binary file not shown.

build_all/46_o_47/VESC_0005ohm.bin

16 Bytes
Binary file not shown.

build_all/46_o_47/VESC_33k.bin

16 Bytes
Binary file not shown.

build_all/46_o_47/VESC_default.bin

16 Bytes
Binary file not shown.

build_all/46_o_47/VESC_servoout.bin

16 Bytes
Binary file not shown.

build_all/46_o_47/VESC_ws2811.bin

16 Bytes
Binary file not shown.

build_all/46_o_47/VESC_ws2811_33k.bin

16 Bytes
Binary file not shown.

build_all/48/VESC_0005ohm.bin

16 Bytes
Binary file not shown.

build_all/48/VESC_default.bin

16 Bytes
Binary file not shown.

build_all/48/VESC_servoout.bin

16 Bytes
Binary file not shown.

build_all/48/VESC_ws2811.bin

16 Bytes
Binary file not shown.

build_all/60/VESC_default.bin

16 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

build_all/60/VESC_servoout.bin

16 Bytes
Binary file not shown.

build_all/60/VESC_ws2811.bin

16 Bytes
Binary file not shown.

build_all/75_300/VESC_default.bin

0 Bytes
Binary file not shown.
16 Bytes
Binary file not shown.

build_all/75_300/VESC_servoout.bin

16 Bytes
Binary file not shown.

build_all/75_300/VESC_ws2811.bin

0 Bytes
Binary file not shown.

build_all/DAS_RS/VESC_default.bin

16 Bytes
Binary file not shown.

commands.c

+1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ void commands_process_packet(unsigned char *data, unsigned int len) {
181181
buffer_append_int32(send_buffer, mc_interface_get_tachometer_abs_value(false), &ind);
182182
send_buffer[ind++] = mc_interface_get_fault();
183183
buffer_append_float32(send_buffer, mc_interface_get_pid_pos_now(), 1e6, &ind);
184+
send_buffer[ind++] = app_get_configuration()->controller_id;
184185
commands_send_packet(send_buffer, ind);
185186
break;
186187

conf_general.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
// Firmware version
2424
#define FW_VERSION_MAJOR 3
25-
#define FW_VERSION_MINOR 39
25+
#define FW_VERSION_MINOR 40
2626

2727
#include "datatypes.h"
2828

0 commit comments

Comments
 (0)