Skip to content

Commit

Permalink
AP_ICEngine: TCA9554 changes motor direction to reverse
Browse files Browse the repository at this point in the history
This is a hard change of direction for O4 aircraft only.

SW-111
  • Loading branch information
loki077 committed Mar 4, 2024
1 parent 07547e1 commit 5710e18
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/AP_ICEngine/AP_ICEngine_TCA9554.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ class AP_ICEngine_TCA9554 {

enum TCA9554_state_t {
STARTER_OFF = 0x30, // output register - 0011 0000
STARTER_ON = 0x11, // output register - 0001 0001 - Forward direction
STARTER_ON = 0x01, // output register - 0000 0001 - Reverse direction
// STARTER_ON = 0x11, // output register - 0001 0001 - Forward direction
};
TCA9554_state_t last_state;

Expand Down

0 comments on commit 5710e18

Please sign in to comment.