Skip to content

Commit c2897e0

Browse files
committed
Changelog + ver update
1 parent 354e875 commit c2897e0

File tree

2 files changed

+11
-18
lines changed

2 files changed

+11
-18
lines changed

CHANGELOG.md

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,17 @@
11
### Changes this version:
2-
- Inverted Y axis direction vector magnitude
3-
- Fixes 2 axis setups in XPforce and DCS and other flight sims
4-
- Changed 2 axis conditional effects to ignore direction vectors (Fixes DCS)
5-
- Modified HID 2 axis descriptor, added back second direction for compliance
6-
- Fixed chip temp sometimes glitching
7-
- TMC debug mode: Changed openloopspeed command to use torque mode instead of raw PWM. Added new openloopspeedpwm to control raw PWM.
8-
- CAN bus corrected packet length when packet is sent as command
9-
- Corrected CAN speed preset in can bridge GVRET mode (savvycan works again)
10-
- Using interrupt transfer for TMC4671 encoder forwarding (Fixed again)
11-
2+
- Added remote CAN button/analog source mainclass
123

134
### Changes in 1.16:
14-
- Added MyActuator RMD CAN support class.
15-
- Temporary implementation until CAN protocol changes. Usable but might be improved in the future
16-
- Fixed issues in CAN analog class for packet 2. Allow shorter frames
17-
- F407: ADC now triggered by timer to reduce interrupt frequency
18-
- Using analog VREF for voltage sensing (better accuracy with unstable 3.3V)
19-
- Added chip temperature readout
205

216
Internal changes:
227
- CAN port interfaces rewritten
238
- HAL updated
249
- Migrated to CPP20
2510
- Upgraded to tinyusb 0.17
26-
- Improved microsecond counter implementation
11+
- Improved microsecond counter implementation
12+
- Added MyActuator RMD CAN support class.
13+
- Temporary implementation until CAN protocol changes. Usable but might be improved in the future
14+
- Fixed issues in CAN analog class for packet 2. Allow shorter frames
15+
- F407: ADC now triggered by timer to reduce interrupt frequency
16+
- Using analog VREF for voltage sensing (better accuracy with unstable 3.3V)
17+
- Added chip temperature readout

Firmware/FFBoard/Inc/constants.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* For more settings see target_constants.h in a target specific folder
99
*/
1010

11-
static const uint8_t SW_VERSION_INT[3] = {1,16,2}; // Version as array. 8 bit each!
11+
static const uint8_t SW_VERSION_INT[3] = {1,16,3}; // Version as array. 8 bit each!
1212
#ifndef MAX_AXIS
1313
#define MAX_AXIS 2 // ONLY USE 2 for now else screws HID Reports
1414
#endif
@@ -24,6 +24,8 @@ static const uint8_t SW_VERSION_INT[3] = {1,16,2}; // Version as array. 8 bit ea
2424
#undef ODRIVE
2525
#undef CANBUTTONS
2626
#undef VESC
27+
#undef CANBRIDGE
28+
#undef CANINPUTMAIN
2729
#endif
2830

2931

0 commit comments

Comments
 (0)