Skip to content

Commit

Permalink
Add OSD support to HDZero
Browse files Browse the repository at this point in the history
  • Loading branch information
pkendall64 committed Feb 25, 2023
1 parent c8bd16a commit 7454692
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/hdzero.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,10 @@ HDZero::SendHeadTrackingEnableCmd(bool enable)

msp.sendPacket(&packet, m_port);
}

void
HDZero::SetOSD(mspPacket_t *packet)
{
MSP msp;
msp.sendPacket(packet, m_port);
}
1 change: 1 addition & 0 deletions src/hdzero.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ class HDZero : public MSPModuleBase
uint8_t GetRecordingState();
void SetRecordingState(uint8_t recordingState, uint16_t delay);
void SendHeadTrackingEnableCmd(bool enable);
void SetOSD(mspPacket_t *packet);
};

0 comments on commit 7454692

Please sign in to comment.