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.
quadv3/mbed/us_ticker_api.h@1:ac68f0368a77, 2013-07-23 (annotated)
- Committer:
- Anaesthetix
- Date:
- Tue Jul 23 14:01:42 2013 +0000
- Revision:
- 1:ac68f0368a77
- Parent:
- 0:978110f7f027
Other accelerometer added
Who changed what in which revision?
User | Revision | Line number | New 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 |