Skip to content

Commit 4ebaa7c

Browse files
committed
Add doxygen comment
1 parent 7a17414 commit 4ebaa7c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/unit/unit_SYN115.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,10 @@ bool UnitSYN115::send(const uint8_t burst_transmission_count)
151151
// preamble
152152
_rmt_buffer.insert(_rmt_buffer.begin(), std::begin(preamble_array), std::end(preamble_array));
153153

154-
_closing = true;
155-
156154
// EOF
157155
_rmt_buffer.push_back(rmt_eof);
156+
157+
_closing = true;
158158
}
159159

160160
// auto wait = estimate_tx_timeout_ticks();

src/unit/unit_SYN115.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,12 @@ class UnitSYN115 : public Component {
6565

6666
///@name Communication identifier
6767
///@{
68+
//! @brief Get communication identifier
6869
inline rf433::communication_identifier_t communicationIdentifier() const
6970
{
7071
return _comm_id;
7172
}
73+
//! @brief Set communication identifier
7274
inline void setCommunicationIdentifier(rf433::communication_identifier_t id)
7375
{
7476
_comm_id = id;

0 commit comments

Comments
 (0)