R1 code for micro:bit based train controller code, requires second micro:bit running rx code to operate - see https://meanderingpi.wordpress.com/ for more information

Fork of mbed-dev-bin by Lancaster University

Committer:
DavidMS
Date:
Tue May 23 12:27:33 2017 +0000
Revision:
4:98796b85dcf3
Parent:
0:e1a608bb55e8
basic_microbit_tx_train_controller_code: R1 code for micro:bit based train controller code, requires second micro:bit running rx code to operate - see https://meanderingpi.wordpress.com/ for more details

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jamesadevine 0:e1a608bb55e8 1 /* mbed Microcontroller Library
jamesadevine 0:e1a608bb55e8 2 * Copyright (c) 2006-2013 ARM Limited
jamesadevine 0:e1a608bb55e8 3 *
jamesadevine 0:e1a608bb55e8 4 * Licensed under the Apache License, Version 2.0 (the "License");
jamesadevine 0:e1a608bb55e8 5 * you may not use this file except in compliance with the License.
jamesadevine 0:e1a608bb55e8 6 * You may obtain a copy of the License at
jamesadevine 0:e1a608bb55e8 7 *
jamesadevine 0:e1a608bb55e8 8 * http://www.apache.org/licenses/LICENSE-2.0
jamesadevine 0:e1a608bb55e8 9 *
jamesadevine 0:e1a608bb55e8 10 * Unless required by applicable law or agreed to in writing, software
jamesadevine 0:e1a608bb55e8 11 * distributed under the License is distributed on an "AS IS" BASIS,
jamesadevine 0:e1a608bb55e8 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
jamesadevine 0:e1a608bb55e8 13 * See the License for the specific language governing permissions and
jamesadevine 0:e1a608bb55e8 14 * limitations under the License.
jamesadevine 0:e1a608bb55e8 15 */
jamesadevine 0:e1a608bb55e8 16 #ifndef MBED_PWMOUT_API_H
jamesadevine 0:e1a608bb55e8 17 #define MBED_PWMOUT_API_H
jamesadevine 0:e1a608bb55e8 18
jamesadevine 0:e1a608bb55e8 19 #include "device.h"
jamesadevine 0:e1a608bb55e8 20
jamesadevine 0:e1a608bb55e8 21 #if DEVICE_PWMOUT
jamesadevine 0:e1a608bb55e8 22
jamesadevine 0:e1a608bb55e8 23 #ifdef __cplusplus
jamesadevine 0:e1a608bb55e8 24 extern "C" {
jamesadevine 0:e1a608bb55e8 25 #endif
jamesadevine 0:e1a608bb55e8 26
jamesadevine 0:e1a608bb55e8 27 typedef struct pwmout_s pwmout_t;
jamesadevine 0:e1a608bb55e8 28
jamesadevine 0:e1a608bb55e8 29 void pwmout_init (pwmout_t* obj, PinName pin);
jamesadevine 0:e1a608bb55e8 30 void pwmout_free (pwmout_t* obj);
jamesadevine 0:e1a608bb55e8 31
jamesadevine 0:e1a608bb55e8 32 void pwmout_write (pwmout_t* obj, float percent);
jamesadevine 0:e1a608bb55e8 33 float pwmout_read (pwmout_t* obj);
jamesadevine 0:e1a608bb55e8 34
jamesadevine 0:e1a608bb55e8 35 void pwmout_period (pwmout_t* obj, float seconds);
jamesadevine 0:e1a608bb55e8 36 void pwmout_period_ms (pwmout_t* obj, int ms);
jamesadevine 0:e1a608bb55e8 37 void pwmout_period_us (pwmout_t* obj, int us);
jamesadevine 0:e1a608bb55e8 38
jamesadevine 0:e1a608bb55e8 39 void pwmout_pulsewidth (pwmout_t* obj, float seconds);
jamesadevine 0:e1a608bb55e8 40 void pwmout_pulsewidth_ms(pwmout_t* obj, int ms);
jamesadevine 0:e1a608bb55e8 41 void pwmout_pulsewidth_us(pwmout_t* obj, int us);
jamesadevine 0:e1a608bb55e8 42
jamesadevine 0:e1a608bb55e8 43 #ifdef __cplusplus
jamesadevine 0:e1a608bb55e8 44 }
jamesadevine 0:e1a608bb55e8 45 #endif
jamesadevine 0:e1a608bb55e8 46
jamesadevine 0:e1a608bb55e8 47 #endif
jamesadevine 0:e1a608bb55e8 48
jamesadevine 0:e1a608bb55e8 49 #endif