Skip to content

Commit 300d3f9

Browse files
authored
Merge pull request #780 from PeeJay/patch-1
Update README.md
2 parents c811840 + fda13b3 commit 300d3f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ In some boards require much more advanced management. The LMIC has a very flexib
712712
The full example looks like this:
713713
714714
```c++
715-
class cMyHlaConfiguration_t : public Arduino_LMIC::HalConfiguration_t
715+
class cMyHalConfiguration_t : public Arduino_LMIC::HalConfiguration_t
716716
{
717717
public:
718718
// ...
@@ -722,15 +722,15 @@ public:
722722
// or the high-power mode above 17 dBm. In other words, it lets the
723723
// LMIC-determined policy determine what's to be done.
724724
725-
virutal TxPowerPolicy_t getTxPowerPolicy(
725+
virtual TxPowerPolicy_t getTxPowerPolicy(
726726
TxPowerPolicy_t policy,
727727
int8_t requestedPower,
728728
uint32_t frequency
729729
) override
730730
{
731731
return policy;
732732
}
733-
}
733+
};
734734
```
735735

736736
#### HalConfiguration_t methods

0 commit comments

Comments
 (0)