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:
- 39:706c32eda7e7
- Parent:
- 38:d9189d958db8
- Child:
- 41:2dbc4afedf61
diff -r d9189d958db8 -r 706c32eda7e7 sx1276/sx1276-mbed-hal.cpp
--- a/sx1276/sx1276-mbed-hal.cpp Sun May 07 18:09:10 2017 +0200
+++ b/sx1276/sx1276-mbed-hal.cpp Sun May 07 20:26:02 2017 +0200
@@ -168,15 +168,15 @@
dio4.mode( PullDown );
#endif
if (_dio0)
- _dio0->rise(callback(this, static_cast< TriggerMB1xAS > ( irqHandlers[0] )));
+ _dio0->rise(callback(this, static_cast< Trigger > ( irqHandlers[0] )));
if (_dio1)
- _dio1->rise(callback(this, static_cast< TriggerMB1xAS > ( irqHandlers[1] )));
+ _dio1->rise(callback(this, static_cast< Trigger > ( irqHandlers[1] )));
if (_dio2)
- _dio2->rise(callback(this, static_cast< TriggerMB1xAS > ( irqHandlers[2] )));
+ _dio2->rise(callback(this, static_cast< Trigger > ( irqHandlers[2] )));
if (_dio3)
- _dio3->rise(callback(this, static_cast< TriggerMB1xAS > ( irqHandlers[3] )));
+ _dio3->rise(callback(this, static_cast< Trigger > ( irqHandlers[3] )));
if (_dio4)
- _dio4->rise(callback(this, static_cast< TriggerMB1xAS > ( irqHandlers[4] )));
+ _dio4->rise(callback(this, static_cast< Trigger > ( irqHandlers[4] )));
}
void SX1276Generic::IoDeInit( void )