Skip to content

Commit

Permalink
Merge 9b3bd29 into 4a3c68d
Browse files Browse the repository at this point in the history
  • Loading branch information
peternewman committed Mar 13, 2024
2 parents 4a3c68d + 9b3bd29 commit 280af8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions plugins/usbpro/DmxterWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const uint8_t DmxterWidgetImpl::TOD_LABEL = 0x82;
const uint8_t DmxterWidgetImpl::DISCOVERY_BRANCH_LABEL = 0x83;
const uint8_t DmxterWidgetImpl::FULL_DISCOVERY_LABEL = 0x84;
const uint8_t DmxterWidgetImpl::INCREMENTAL_DISCOVERY_LABEL = 0x85;
const uint8_t DmxterWidgetImpl::SHUTDOWN_LABAEL = 0xf0;
const uint8_t DmxterWidgetImpl::SHUTDOWN_LABEL = 0xf0;


/*
Expand Down Expand Up @@ -195,7 +195,7 @@ void DmxterWidgetImpl::HandleMessage(uint8_t label,
case RDM_BCAST_REQUEST_LABEL:
HandleBroadcastRDMResponse(data, length);
break;
case SHUTDOWN_LABAEL:
case SHUTDOWN_LABEL:
HandleShutdown(data, length);
break;
default:
Expand Down
2 changes: 1 addition & 1 deletion plugins/usbpro/DmxterWidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class DmxterWidgetImpl: public BaseUsbProWidget,
static const uint8_t DISCOVERY_BRANCH_LABEL;
static const uint8_t FULL_DISCOVERY_LABEL;
static const uint8_t INCREMENTAL_DISCOVERY_LABEL;
static const uint8_t SHUTDOWN_LABAEL;
static const uint8_t SHUTDOWN_LABEL;

typedef enum {
RC_CHECKSUM_ERROR = 1,
Expand Down

0 comments on commit 280af8a

Please sign in to comment.