Skip to content

Commit

Permalink
Merge pull request #87 from OpenI6X/janek/i6x-elrs
Browse files Browse the repository at this point in the history
Correct name + ELRSV2 screen update rate
  • Loading branch information
ajjjjjjjj authored Dec 22, 2021
2 parents c0d64ac + 82f787e commit eb81636
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions radio/src/targets/flysky/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,9 @@ void backlightEnable();
#if !defined(SIMU)
void usbJoystickUpdate();
#endif
#define USB_NAME "FS I6X"
#define USB_NAME "FS i6X"
#define USB_MANUFACTURER 'F', 'l', 'y', 'S', 'k', 'y', ' ', ' ' /* 8 bytes */
#define USB_PRODUCT 'I', '6', 'X', ' ', ' ', ' ', ' ', ' ' /* 8 Bytes */
#define USB_PRODUCT 'i', '6', 'X', ' ', ' ', ' ', ' ', ' ' /* 8 Bytes */

#if defined(__cplusplus) && !defined(SIMU)
}
Expand Down
2 changes: 1 addition & 1 deletion radio/src/targets/flysky/tools/elrsV2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ void ELRSV2_run(event_t event) {

if (event == EVT_KEY_LONG(KEY_EXIT)) {
ELRSV2_stop();
} else if (event != 0 || ++drawDelay > 20) {
} else if (event != 0 || ++drawDelay > 10) {
drawDelay = 0;
if (fieldPopup != 0) {
runPopupPage(event);
Expand Down

0 comments on commit eb81636

Please sign in to comment.