Skip to content

Commit

Permalink
chore(radio): Don't save joystick configuration data to EM backup sto…
Browse files Browse the repository at this point in the history
…rage (#4022)
  • Loading branch information
philmoz authored Sep 7, 2023
1 parent d3ed7c1 commit 4d623bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions radio/src/datastructs_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -760,10 +760,10 @@ PACK(struct ModelData {
}
}

uint8_t usbJoystickExtMode:1;
uint8_t usbJoystickIfMode:3 ENUM(USBJoystickIfMode);
uint8_t usbJoystickCircularCut:4;
USBJoystickChData usbJoystickCh[USBJ_MAX_JOYSTICK_CHANNELS];
NOBACKUP(uint8_t usbJoystickExtMode:1);
NOBACKUP(uint8_t usbJoystickIfMode:3 ENUM(USBJoystickIfMode));
NOBACKUP(uint8_t usbJoystickCircularCut:4);
NOBACKUP(USBJoystickChData usbJoystickCh[USBJ_MAX_JOYSTICK_CHANNELS]);

// Radio level tabs control (model settings)
#if defined(COLORLCD)
Expand Down

0 comments on commit 4d623bb

Please sign in to comment.