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.
Fork of mbed by
us_ticker_api.h@1:bc4604ce8531, 2016-02-03 (annotated)
- Committer:
- JordanWisdom
- Date:
- Wed Feb 03 17:24:37 2016 +0000
- Revision:
- 1:bc4604ce8531
- Parent:
- 0:a8fa94490a0a
minor updates to get this one working.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
gokmenascioglu | 0:a8fa94490a0a | 1 | /* mbed Microcontroller Library - us_ticker_api |
gokmenascioglu | 0:a8fa94490a0a | 2 | * Copyright (c) 2009 ARM Limited. All rights reserved. |
gokmenascioglu | 0:a8fa94490a0a | 3 | */ |
gokmenascioglu | 0:a8fa94490a0a | 4 | |
gokmenascioglu | 0:a8fa94490a0a | 5 | #ifndef MBED_US_TICKER_API_H |
gokmenascioglu | 0:a8fa94490a0a | 6 | #define MBED_US_TICKER_API_H |
gokmenascioglu | 0:a8fa94490a0a | 7 | |
gokmenascioglu | 0:a8fa94490a0a | 8 | #include <stdint.h> |
gokmenascioglu | 0:a8fa94490a0a | 9 | |
gokmenascioglu | 0:a8fa94490a0a | 10 | #ifdef __cplusplus |
gokmenascioglu | 0:a8fa94490a0a | 11 | extern "C" { |
gokmenascioglu | 0:a8fa94490a0a | 12 | #endif |
gokmenascioglu | 0:a8fa94490a0a | 13 | |
gokmenascioglu | 0:a8fa94490a0a | 14 | uint32_t us_ticker_read(void); |
gokmenascioglu | 0:a8fa94490a0a | 15 | |
gokmenascioglu | 0:a8fa94490a0a | 16 | #ifdef __cplusplus |
gokmenascioglu | 0:a8fa94490a0a | 17 | } |
gokmenascioglu | 0:a8fa94490a0a | 18 | #endif |
gokmenascioglu | 0:a8fa94490a0a | 19 | |
gokmenascioglu | 0:a8fa94490a0a | 20 | #endif |