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.
Dependents: Threaded_LoRa_Modem
Revision 7:250d1c72df36, committed 2021-06-23
- Comitter:
- rlanders73
- Date:
- Wed Jun 23 15:53:12 2021 +0000
- Parent:
- 6:20187dafd325
- Commit message:
- explicitly not disabling interrupts for mbed
Changed in this revision
| RadioHead.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/RadioHead.h Tue Jun 22 20:25:10 2021 +0000
+++ b/RadioHead.h Wed Jun 23 15:53:12 2021 +0000
@@ -723,7 +723,7 @@
#define ATOMIC_BLOCK_START unsigned int __status = INTDisableInterrupts(); {
#define ATOMIC_BLOCK_END } INTRestoreInterrupts(__status);
#else
- // TO BE DONE:
+ // Disabling interrupts not working for your OS (like mbed)
#define ATOMIC_BLOCK_START
#define ATOMIC_BLOCK_END
#endif