Skip to content

Commit

Permalink
fix: art-trigger payload ptr position
Browse files Browse the repository at this point in the history
  • Loading branch information
hideakitai committed Jan 4, 2024
1 parent 7de25db commit 241e192
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Artnet/ArtTrigger.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ class ArtTrigger {
public:
void set_oem(uint16_t oem_)
{
oem = oem_;
this->oem = oem_;
}

void set_key(uint8_t key_)
{
key = key_;
this->key = key_;
}

void set_subkey(uint8_t subkey_)
{
subkey = subkey_;
this->subkey = subkey_;
}

void set_header(uint8_t *packet)
Expand All @@ -54,15 +54,15 @@ class ArtTrigger {
packet[PROTOCOL_VER_L] = (PROTOCOL_VER >> 0) & 0x00FF;
packet[FILTER_1] = 0;
packet[FILTER_2] = 0;
packet[OEM_H] = (oem >> 8) & 0x00FF;
packet[OEM_L] = (oem >> 0) & 0x00FF;
packet[KEY] = key;
packet[SUB_KEY] = subkey;
packet[OEM_H] = (this->oem >> 8) & 0x00FF;
packet[OEM_L] = (this->oem >> 0) & 0x00FF;
packet[KEY] = this->key;
packet[SUB_KEY] = this->subkey;
}

void set_payload(uint8_t *packet, const uint8_t* const payload, uint16_t size)
{
memcpy(packet, payload, size);
memcpy(packet + PAYLOAD, payload, size);
}
};

Expand Down

0 comments on commit 241e192

Please sign in to comment.