Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.
Dependents: 1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB
Fork of mbed by
us_ticker_api.h@40:976df7c37ad5, 2012-06-12 (annotated)
- Committer:
- emilmont
- Date:
- Tue Jun 12 18:23:44 2012 +0100
- Revision:
- 40:976df7c37ad5
- Child:
- 44:24d45a770a51
First build for the new build system
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
emilmont | 40:976df7c37ad5 | 1 | /* mbed Microcontroller Library - us_ticker_api |
emilmont | 40:976df7c37ad5 | 2 | * Copyright (c) 2009 ARM Limited. All rights reserved. |
emilmont | 40:976df7c37ad5 | 3 | */ |
emilmont | 40:976df7c37ad5 | 4 | |
emilmont | 40:976df7c37ad5 | 5 | #ifndef MBED_US_TICKER_API_H |
emilmont | 40:976df7c37ad5 | 6 | #define MBED_US_TICKER_API_H |
emilmont | 40:976df7c37ad5 | 7 | |
emilmont | 40:976df7c37ad5 | 8 | #include <stdint.h> |
emilmont | 40:976df7c37ad5 | 9 | |
emilmont | 40:976df7c37ad5 | 10 | #ifdef __cplusplus |
emilmont | 40:976df7c37ad5 | 11 | extern "C" { |
emilmont | 40:976df7c37ad5 | 12 | #endif |
emilmont | 40:976df7c37ad5 | 13 | |
emilmont | 40:976df7c37ad5 | 14 | uint32_t us_ticker_read(void); |
emilmont | 40:976df7c37ad5 | 15 | |
emilmont | 40:976df7c37ad5 | 16 | #ifdef __cplusplus |
emilmont | 40:976df7c37ad5 | 17 | } |
emilmont | 40:976df7c37ad5 | 18 | #endif |
emilmont | 40:976df7c37ad5 | 19 | |
emilmont | 40:976df7c37ad5 | 20 | #endif |