Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ In some boards require much more advanced management. The LMIC has a very flexib
The full example looks like this:

```c++
class cMyHlaConfiguration_t : public Arduino_LMIC::HalConfiguration_t
class cMyHalConfiguration_t : public Arduino_LMIC::HalConfiguration_t
{
public:
// ...
Expand All @@ -722,15 +722,15 @@ public:
// or the high-power mode above 17 dBm. In other words, it lets the
// LMIC-determined policy determine what's to be done.

virutal TxPowerPolicy_t getTxPowerPolicy(
virtual TxPowerPolicy_t getTxPowerPolicy(
TxPowerPolicy_t policy,
int8_t requestedPower,
uint32_t frequency
) override
{
return policy;
}
}
};
```

#### HalConfiguration_t methods
Expand Down