Einstein Filho
/
MANGUEBAJA2019_BOX
Mangue Baja Box
mbed/us_ticker_api.h@0:0dee8840a1c0, 2019-07-29 (annotated)
- Committer:
- einsteingustavo
- Date:
- Mon Jul 29 20:38:00 2019 +0000
- Revision:
- 0:0dee8840a1c0
Mangue Baja Box
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
einsteingustavo | 0:0dee8840a1c0 | 1 | /* mbed Microcontroller Library |
einsteingustavo | 0:0dee8840a1c0 | 2 | * Copyright (c) 2006-2013 ARM Limited |
einsteingustavo | 0:0dee8840a1c0 | 3 | * |
einsteingustavo | 0:0dee8840a1c0 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
einsteingustavo | 0:0dee8840a1c0 | 5 | * you may not use this file except in compliance with the License. |
einsteingustavo | 0:0dee8840a1c0 | 6 | * You may obtain a copy of the License at |
einsteingustavo | 0:0dee8840a1c0 | 7 | * |
einsteingustavo | 0:0dee8840a1c0 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
einsteingustavo | 0:0dee8840a1c0 | 9 | * |
einsteingustavo | 0:0dee8840a1c0 | 10 | * Unless required by applicable law or agreed to in writing, software |
einsteingustavo | 0:0dee8840a1c0 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
einsteingustavo | 0:0dee8840a1c0 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
einsteingustavo | 0:0dee8840a1c0 | 13 | * See the License for the specific language governing permissions and |
einsteingustavo | 0:0dee8840a1c0 | 14 | * limitations under the License. |
einsteingustavo | 0:0dee8840a1c0 | 15 | */ |
einsteingustavo | 0:0dee8840a1c0 | 16 | #ifndef MBED_US_TICKER_API_H |
einsteingustavo | 0:0dee8840a1c0 | 17 | #define MBED_US_TICKER_API_H |
einsteingustavo | 0:0dee8840a1c0 | 18 | |
einsteingustavo | 0:0dee8840a1c0 | 19 | #include <stdint.h> |
einsteingustavo | 0:0dee8840a1c0 | 20 | |
einsteingustavo | 0:0dee8840a1c0 | 21 | #ifdef __cplusplus |
einsteingustavo | 0:0dee8840a1c0 | 22 | extern "C" { |
einsteingustavo | 0:0dee8840a1c0 | 23 | #endif |
einsteingustavo | 0:0dee8840a1c0 | 24 | |
einsteingustavo | 0:0dee8840a1c0 | 25 | typedef uint32_t timestamp_t; |
einsteingustavo | 0:0dee8840a1c0 | 26 | |
einsteingustavo | 0:0dee8840a1c0 | 27 | uint32_t us_ticker_read(void); |
einsteingustavo | 0:0dee8840a1c0 | 28 | |
einsteingustavo | 0:0dee8840a1c0 | 29 | typedef void (*ticker_event_handler)(uint32_t id); |
einsteingustavo | 0:0dee8840a1c0 | 30 | void us_ticker_set_handler(ticker_event_handler handler); |
einsteingustavo | 0:0dee8840a1c0 | 31 | |
einsteingustavo | 0:0dee8840a1c0 | 32 | typedef struct ticker_event_s { |
einsteingustavo | 0:0dee8840a1c0 | 33 | timestamp_t timestamp; |
einsteingustavo | 0:0dee8840a1c0 | 34 | uint32_t id; |
einsteingustavo | 0:0dee8840a1c0 | 35 | struct ticker_event_s *next; |
einsteingustavo | 0:0dee8840a1c0 | 36 | } ticker_event_t; |
einsteingustavo | 0:0dee8840a1c0 | 37 | |
einsteingustavo | 0:0dee8840a1c0 | 38 | void us_ticker_init(void); |
einsteingustavo | 0:0dee8840a1c0 | 39 | void us_ticker_set_interrupt(timestamp_t timestamp); |
einsteingustavo | 0:0dee8840a1c0 | 40 | void us_ticker_disable_interrupt(void); |
einsteingustavo | 0:0dee8840a1c0 | 41 | void us_ticker_clear_interrupt(void); |
einsteingustavo | 0:0dee8840a1c0 | 42 | void us_ticker_irq_handler(void); |
einsteingustavo | 0:0dee8840a1c0 | 43 | |
einsteingustavo | 0:0dee8840a1c0 | 44 | void us_ticker_insert_event(ticker_event_t *obj, timestamp_t timestamp, uint32_t id); |
einsteingustavo | 0:0dee8840a1c0 | 45 | void us_ticker_remove_event(ticker_event_t *obj); |
einsteingustavo | 0:0dee8840a1c0 | 46 | |
einsteingustavo | 0:0dee8840a1c0 | 47 | #ifdef __cplusplus |
einsteingustavo | 0:0dee8840a1c0 | 48 | } |
einsteingustavo | 0:0dee8840a1c0 | 49 | #endif |
einsteingustavo | 0:0dee8840a1c0 | 50 | |
einsteingustavo | 0:0dee8840a1c0 | 51 | #endif |
einsteingustavo | 0:0dee8840a1c0 | 52 |