File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -712,7 +712,7 @@ In some boards require much more advanced management. The LMIC has a very flexib
712
712
The full example looks like this:
713
713
714
714
```c++
715
- class cMyHlaConfiguration_t : public Arduino_LMIC::HalConfiguration_t
715
+ class cMyHalConfiguration_t : public Arduino_LMIC::HalConfiguration_t
716
716
{
717
717
public:
718
718
// ...
@@ -722,15 +722,15 @@ public:
722
722
// or the high-power mode above 17 dBm. In other words, it lets the
723
723
// LMIC-determined policy determine what's to be done.
724
724
725
- virutal TxPowerPolicy_t getTxPowerPolicy(
725
+ virtual TxPowerPolicy_t getTxPowerPolicy(
726
726
TxPowerPolicy_t policy,
727
727
int8_t requestedPower,
728
728
uint32_t frequency
729
729
) override
730
730
{
731
731
return policy;
732
732
}
733
- }
733
+ };
734
734
```
735
735
736
736
#### HalConfiguration_t methods
You can’t perform that action at this time.
0 commit comments