Basic fading in and out of leds with light sensor.

Dependencies:   mbed

Committer:
mturner5
Date:
Mon Sep 19 03:24:58 2016 +0000
Revision:
0:cf7af2656659
Basic v1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mturner5 0:cf7af2656659 1 /* mbed Microcontroller Library
mturner5 0:cf7af2656659 2 * Copyright (c) 2006-2013 ARM Limited
mturner5 0:cf7af2656659 3 *
mturner5 0:cf7af2656659 4 * Licensed under the Apache License, Version 2.0 (the "License");
mturner5 0:cf7af2656659 5 * you may not use this file except in compliance with the License.
mturner5 0:cf7af2656659 6 * You may obtain a copy of the License at
mturner5 0:cf7af2656659 7 *
mturner5 0:cf7af2656659 8 * http://www.apache.org/licenses/LICENSE-2.0
mturner5 0:cf7af2656659 9 *
mturner5 0:cf7af2656659 10 * Unless required by applicable law or agreed to in writing, software
mturner5 0:cf7af2656659 11 * distributed under the License is distributed on an "AS IS" BASIS,
mturner5 0:cf7af2656659 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
mturner5 0:cf7af2656659 13 * See the License for the specific language governing permissions and
mturner5 0:cf7af2656659 14 * limitations under the License.
mturner5 0:cf7af2656659 15 */
mturner5 0:cf7af2656659 16 #ifndef MBED_CAN_API_H
mturner5 0:cf7af2656659 17 #define MBED_CAN_API_H
mturner5 0:cf7af2656659 18
mturner5 0:cf7af2656659 19 #include "device.h"
mturner5 0:cf7af2656659 20
mturner5 0:cf7af2656659 21 #if DEVICE_CAN
mturner5 0:cf7af2656659 22
mturner5 0:cf7af2656659 23 #include "PinNames.h"
mturner5 0:cf7af2656659 24 #include "PeripheralNames.h"
mturner5 0:cf7af2656659 25 #include "can_helper.h"
mturner5 0:cf7af2656659 26
mturner5 0:cf7af2656659 27 #ifdef __cplusplus
mturner5 0:cf7af2656659 28 extern "C" {
mturner5 0:cf7af2656659 29 #endif
mturner5 0:cf7af2656659 30
mturner5 0:cf7af2656659 31 typedef enum {
mturner5 0:cf7af2656659 32 IRQ_RX,
mturner5 0:cf7af2656659 33 IRQ_TX,
mturner5 0:cf7af2656659 34 IRQ_ERROR,
mturner5 0:cf7af2656659 35 IRQ_OVERRUN,
mturner5 0:cf7af2656659 36 IRQ_WAKEUP,
mturner5 0:cf7af2656659 37 IRQ_PASSIVE,
mturner5 0:cf7af2656659 38 IRQ_ARB,
mturner5 0:cf7af2656659 39 IRQ_BUS,
mturner5 0:cf7af2656659 40 IRQ_READY
mturner5 0:cf7af2656659 41 } CanIrqType;
mturner5 0:cf7af2656659 42
mturner5 0:cf7af2656659 43
mturner5 0:cf7af2656659 44 typedef enum {
mturner5 0:cf7af2656659 45 MODE_RESET,
mturner5 0:cf7af2656659 46 MODE_NORMAL,
mturner5 0:cf7af2656659 47 MODE_SILENT,
mturner5 0:cf7af2656659 48 MODE_TEST_GLOBAL,
mturner5 0:cf7af2656659 49 MODE_TEST_LOCAL,
mturner5 0:cf7af2656659 50 MODE_TEST_SILENT
mturner5 0:cf7af2656659 51 } CanMode;
mturner5 0:cf7af2656659 52
mturner5 0:cf7af2656659 53 typedef void (*can_irq_handler)(uint32_t id, CanIrqType type);
mturner5 0:cf7af2656659 54
mturner5 0:cf7af2656659 55 typedef struct can_s can_t;
mturner5 0:cf7af2656659 56
mturner5 0:cf7af2656659 57 void can_init (can_t *obj, PinName rd, PinName td);
mturner5 0:cf7af2656659 58 void can_free (can_t *obj);
mturner5 0:cf7af2656659 59 int can_frequency(can_t *obj, int hz);
mturner5 0:cf7af2656659 60
mturner5 0:cf7af2656659 61 void can_irq_init (can_t *obj, can_irq_handler handler, uint32_t id);
mturner5 0:cf7af2656659 62 void can_irq_free (can_t *obj);
mturner5 0:cf7af2656659 63 void can_irq_set (can_t *obj, CanIrqType irq, uint32_t enable);
mturner5 0:cf7af2656659 64
mturner5 0:cf7af2656659 65 int can_write (can_t *obj, CAN_Message, int cc);
mturner5 0:cf7af2656659 66 int can_read (can_t *obj, CAN_Message *msg, int handle);
mturner5 0:cf7af2656659 67 int can_mode (can_t *obj, CanMode mode);
mturner5 0:cf7af2656659 68 int can_filter(can_t *obj, uint32_t id, uint32_t mask, CANFormat format, int32_t handle);
mturner5 0:cf7af2656659 69 void can_reset (can_t *obj);
mturner5 0:cf7af2656659 70 unsigned char can_rderror (can_t *obj);
mturner5 0:cf7af2656659 71 unsigned char can_tderror (can_t *obj);
mturner5 0:cf7af2656659 72 void can_monitor (can_t *obj, int silent);
mturner5 0:cf7af2656659 73
mturner5 0:cf7af2656659 74 #ifdef __cplusplus
mturner5 0:cf7af2656659 75 };
mturner5 0:cf7af2656659 76 #endif
mturner5 0:cf7af2656659 77
mturner5 0:cf7af2656659 78 #endif // MBED_CAN_API_H
mturner5 0:cf7af2656659 79
mturner5 0:cf7af2656659 80 #endif