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.
Diff: sx1276/sx1276-mbed-hal.cpp
- Revision:
- 46:e78a1d0391ac
- Parent:
- 45:9788b98821a5
- Child:
- 51:aef3234bcb71
--- a/sx1276/sx1276-mbed-hal.cpp Tue May 09 14:46:15 2017 +0000
+++ b/sx1276/sx1276-mbed-hal.cpp Thu May 11 10:11:13 2017 +0200
@@ -43,14 +43,14 @@
switch(boardConnected) {
case SX1276MB1MAS:
case SX1276MB1LAS:
- _antSwitch = new DigitalInOut(antSwitch);
+ _antSwitch = new DigitalOut(antSwitch);
break;
case RFM95_SX1276:
break;
case MURATA_SX1276:
- _antSwitch = new DigitalInOut(antSwitch);
- _antSwitchTX = new DigitalInOut(antSwitchTX);
- _antSwitchTXBoost = new DigitalInOut(antSwitchTXBoost);
+ _antSwitch = new DigitalOut(antSwitch);
+ _antSwitchTX = new DigitalOut(antSwitchTX);
+ _antSwitchTXBoost = new DigitalOut(antSwitchTXBoost);
break;
default:
break;
@@ -160,13 +160,6 @@
void SX1276Generic::IoIrqInit( DioIrqHandler *irqHandlers )
{
-#if( defined ( TARGET_NUCLEO_L152RE ) || defined ( TARGET_LPC11U6X ) )
- dio0.mode( PullDown );
- dio1.mode( PullDown );
- dio2.mode( PullDown );
- dio3.mode( PullDown );
- dio4.mode( PullDown );
-#endif
if (_dio0)
_dio0->rise(callback(this, static_cast< Trigger > ( irqHandlers[0] )));
if (_dio1)