Erik van de Coevering / quadV3
Committer:
Anaesthetix
Date:
Wed Jan 30 13:14:44 2013 +0000
Revision:
0:978110f7f027
My quadcopter prototype software, still in development.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Anaesthetix 0:978110f7f027 1 /* mbed Microcontroller Library - us_ticker_api
Anaesthetix 0:978110f7f027 2 * Copyright (c) 2009 ARM Limited. All rights reserved.
Anaesthetix 0:978110f7f027 3 */
Anaesthetix 0:978110f7f027 4
Anaesthetix 0:978110f7f027 5 #ifndef MBED_US_TICKER_API_H
Anaesthetix 0:978110f7f027 6 #define MBED_US_TICKER_API_H
Anaesthetix 0:978110f7f027 7
Anaesthetix 0:978110f7f027 8 #include <stdint.h>
Anaesthetix 0:978110f7f027 9
Anaesthetix 0:978110f7f027 10 #ifdef __cplusplus
Anaesthetix 0:978110f7f027 11 extern "C" {
Anaesthetix 0:978110f7f027 12 #endif
Anaesthetix 0:978110f7f027 13
Anaesthetix 0:978110f7f027 14 uint32_t us_ticker_read(void);
Anaesthetix 0:978110f7f027 15
Anaesthetix 0:978110f7f027 16 #ifdef __cplusplus
Anaesthetix 0:978110f7f027 17 }
Anaesthetix 0:978110f7f027 18 #endif
Anaesthetix 0:978110f7f027 19
Anaesthetix 0:978110f7f027 20 #endif