Einstein Filho
/
MANGUEBAJA2019_BOX
Mangue Baja Box
mbed/pwmout_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_PWMOUT_API_H |
einsteingustavo | 0:0dee8840a1c0 | 17 | #define MBED_PWMOUT_API_H |
einsteingustavo | 0:0dee8840a1c0 | 18 | |
einsteingustavo | 0:0dee8840a1c0 | 19 | #include "device.h" |
einsteingustavo | 0:0dee8840a1c0 | 20 | |
einsteingustavo | 0:0dee8840a1c0 | 21 | #if DEVICE_PWMOUT |
einsteingustavo | 0:0dee8840a1c0 | 22 | |
einsteingustavo | 0:0dee8840a1c0 | 23 | #ifdef __cplusplus |
einsteingustavo | 0:0dee8840a1c0 | 24 | extern "C" { |
einsteingustavo | 0:0dee8840a1c0 | 25 | #endif |
einsteingustavo | 0:0dee8840a1c0 | 26 | |
einsteingustavo | 0:0dee8840a1c0 | 27 | typedef struct pwmout_s pwmout_t; |
einsteingustavo | 0:0dee8840a1c0 | 28 | |
einsteingustavo | 0:0dee8840a1c0 | 29 | void pwmout_init (pwmout_t* obj, PinName pin); |
einsteingustavo | 0:0dee8840a1c0 | 30 | void pwmout_free (pwmout_t* obj); |
einsteingustavo | 0:0dee8840a1c0 | 31 | |
einsteingustavo | 0:0dee8840a1c0 | 32 | void pwmout_write (pwmout_t* obj, float percent); |
einsteingustavo | 0:0dee8840a1c0 | 33 | float pwmout_read (pwmout_t* obj); |
einsteingustavo | 0:0dee8840a1c0 | 34 | |
einsteingustavo | 0:0dee8840a1c0 | 35 | void pwmout_period (pwmout_t* obj, float seconds); |
einsteingustavo | 0:0dee8840a1c0 | 36 | void pwmout_period_ms (pwmout_t* obj, int ms); |
einsteingustavo | 0:0dee8840a1c0 | 37 | void pwmout_period_us (pwmout_t* obj, int us); |
einsteingustavo | 0:0dee8840a1c0 | 38 | |
einsteingustavo | 0:0dee8840a1c0 | 39 | void pwmout_pulsewidth (pwmout_t* obj, float seconds); |
einsteingustavo | 0:0dee8840a1c0 | 40 | void pwmout_pulsewidth_ms(pwmout_t* obj, int ms); |
einsteingustavo | 0:0dee8840a1c0 | 41 | void pwmout_pulsewidth_us(pwmout_t* obj, int us); |
einsteingustavo | 0:0dee8840a1c0 | 42 | |
einsteingustavo | 0:0dee8840a1c0 | 43 | #ifdef __cplusplus |
einsteingustavo | 0:0dee8840a1c0 | 44 | } |
einsteingustavo | 0:0dee8840a1c0 | 45 | #endif |
einsteingustavo | 0:0dee8840a1c0 | 46 | |
einsteingustavo | 0:0dee8840a1c0 | 47 | #endif |
einsteingustavo | 0:0dee8840a1c0 | 48 | |
einsteingustavo | 0:0dee8840a1c0 | 49 | #endif |
einsteingustavo | 0:0dee8840a1c0 | 50 |