FW 3.40: Added vesc id to mc_values

This commit is contained in:
Benjamin Vedder 2018-07-23 15:43:58 +02:00
parent a20c35b338
commit 43c3bbaf91
27 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,6 @@
=== FW 3.40 ===
* Added motor controller ID to COMM_GET_VALUES.
=== FW 3.39 ===
* Updated HW75_300.
* Added AUX output support.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -181,6 +181,7 @@ void commands_process_packet(unsigned char *data, unsigned int len) {
buffer_append_int32(send_buffer, mc_interface_get_tachometer_abs_value(false), &ind);
send_buffer[ind++] = mc_interface_get_fault();
buffer_append_float32(send_buffer, mc_interface_get_pid_pos_now(), 1e6, &ind);
send_buffer[ind++] = app_get_configuration()->controller_id;
commands_send_packet(send_buffer, ind);
break;

View File

@ -22,7 +22,7 @@
// Firmware version
#define FW_VERSION_MAJOR 3
#define FW_VERSION_MINOR 39
#define FW_VERSION_MINOR 40
#include "datatypes.h"