Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed LoRaWAN-lib
Revision 14:6bcc681b0310, committed 2019-04-22
- Comitter:
- amirchaudhary
- Date:
- Mon Apr 22 13:35:46 2019 +0000
- Parent:
- 13:ac82fb2be07c
- Commit message:
- Blue LED Blinking
Changed in this revision
radio/SX1276Lib/sx1276/sx1276-hal.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/radio/SX1276Lib/sx1276/sx1276-hal.cpp Fri Apr 19 18:18:30 2019 +0000 +++ b/radio/SX1276Lib/sx1276/sx1276-hal.cpp Mon Apr 22 13:35:46 2019 +0000 @@ -57,9 +57,9 @@ AntSwitch( P0_23 ), Fake( A3 ) #else - : SX1276( events, D11, D12, D13, D10, A0, D2, D3, D4, D5, D8, D9 ), + : SX1276( events, D11, D12, D13, D10, A0, D2, D3, D4, D5, A3, D9 ), AntSwitch( A4 ), - Fake( A3 ) + Fake( D15 ) #endif { this->RadioEvents = events; @@ -227,18 +227,18 @@ { if( boardConnected == SX1276MB1LAS ) { - return RF_PACONFIG_PASELECT_PABOOST; + return RF_PACONFIG_PASELECT_PABOOST; } else { - // return RF_PACONFIG_PASELECT_RFO; - return RF_PACONFIG_PASELECT_PABOOST; + // return RF_PACONFIG_PASELECT_RFO; + return RF_PACONFIG_PASELECT_PABOOST; } } else { - // return RF_PACONFIG_PASELECT_RFO; - return RF_PACONFIG_PASELECT_PABOOST; + // return RF_PACONFIG_PASELECT_RFO; + return RF_PACONFIG_PASELECT_PABOOST; } }