Skip to content

Commit

Permalink
Disabled analog and digital sources by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Ultrawipf committed May 6, 2024
1 parent 7f395d0 commit 0fba1a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Firmware/FFBoard/UserExtensions/Inc/FFBHIDMain.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ class FFBHIDMain: public FFBoardMain, public cpp_freertos::Thread, PersistentSto
uint8_t reportSendCounter = 0;

const uint8_t analogAxisCount = 8;
uint16_t btnsources = 1; // Default ID0 = local buttons
uint16_t ainsources = 1;
uint16_t btnsources = 0; // Disabled by default
uint16_t ainsources = 0;


ClassChooser<ButtonSource> btn_chooser;
Expand Down

0 comments on commit 0fba1a6

Please sign in to comment.