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 SX1272Lib
Diff: system/timer.h
- Revision:
- 5:62862ef9480b
- Parent:
- 3:3152aa75c58d
- Child:
- 7:5077515c163b
diff -r 78bf111a5f6a -r 62862ef9480b system/timer.h
--- a/system/timer.h Wed May 18 11:33:36 2016 +0000
+++ b/system/timer.h Tue Jul 05 15:00:47 2016 +0000
@@ -22,7 +22,7 @@
*/
typedef struct TimerEvent_s
{
- uint32_t value;
+ uint64_t value;
void ( *Callback )( void );
Ticker Timer;
}TimerEvent_t;
@@ -31,7 +31,7 @@
* \brief Timer time variable definition
*/
#ifndef TimerTime_t
-typedef uint32_t TimerTime_t;
+typedef uint64_t TimerTime_t;
#endif
/*!