Skip to content

Commit

Permalink
Add doxygen comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmuskleist committed Aug 7, 2023
1 parent 8179386 commit 59d35f5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/modm/driver/radio/sx128x.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,13 @@ class Sx128x : public sx128x, public Transport

/// Retrieve information about the last received packet
/// @attention The returned parameters are frame-dependent
/// @attention Actual signal power is -(rssiSync) / 2 (dBm)
/// @attention Actual SNR is (snr) / 4 (dBm)
modm::ResumableResult<bool>
getPacketStatus(PacketStatus *packetStatus);

/// Get the instantaneous RSSI value during reception of the packet
/// @attention Actual signal power is -(rssiSync) / 2 (dBm)
modm::ResumableResult<bool>
getRssiInst(uint8_t *rssiInst);

Expand Down Expand Up @@ -216,6 +219,7 @@ class Sx128x : public sx128x, public Transport
/// Set UART speed
/// @warning UART only
/// @attention UART communication must be initiated with 115.2 kbps
/// @attention The UartDividerRatio is given by UartDividerRatio = (Baud Rate * 2^20) / fClk
modm::ResumableResult<bool>
setUartSpeed(UartDividerRatio uartDividerRatio);

Expand Down

0 comments on commit 59d35f5

Please sign in to comment.