[SX126x] Added missing override specifiers
This commit is contained in:
parent
76096ef29e
commit
21bf99cfe6
1 changed files with 3 additions and 3 deletions
|
@ -991,21 +991,21 @@ class SX126x: public PhysicalLayer {
|
|||
\brief Read currently active IRQ flags.
|
||||
\returns IRQ flags.
|
||||
*/
|
||||
uint32_t getIrqFlags();
|
||||
uint32_t getIrqFlags() override;
|
||||
|
||||
/*!
|
||||
\brief Set interrupt on DIO1 to be sent on a specific IRQ bit (e.g. RxTimeout, CadDone).
|
||||
\param irq Module-specific IRQ flags.
|
||||
\returns \ref status_codes
|
||||
*/
|
||||
int16_t setIrqFlags(uint32_t irq);
|
||||
int16_t setIrqFlags(uint32_t irq) override;
|
||||
|
||||
/*!
|
||||
\brief Clear interrupt on a specific IRQ bit (e.g. RxTimeout, CadDone).
|
||||
\param irq Module-specific IRQ flags.
|
||||
\returns \ref status_codes
|
||||
*/
|
||||
int16_t clearIrqFlags(uint32_t irq);
|
||||
int16_t clearIrqFlags(uint32_t irq) override;
|
||||
|
||||
/*!
|
||||
\brief Set implicit header mode for future reception/transmission.
|
||||
|
|
Loading…
Add table
Reference in a new issue