Initial commit

Dependencies:   FastPWM

Committer:
lypinator
Date:
Wed Sep 16 01:11:49 2020 +0000
Revision:
0:bb348c97df44
Added PWM

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lypinator 0:bb348c97df44 1 /* mbed Microcontroller Library
lypinator 0:bb348c97df44 2 *******************************************************************************
lypinator 0:bb348c97df44 3 * Copyright (c) 2016, STMicroelectronics
lypinator 0:bb348c97df44 4 * All rights reserved.
lypinator 0:bb348c97df44 5 *
lypinator 0:bb348c97df44 6 * Redistribution and use in source and binary forms, with or without
lypinator 0:bb348c97df44 7 * modification, are permitted provided that the following conditions are met:
lypinator 0:bb348c97df44 8 *
lypinator 0:bb348c97df44 9 * 1. Redistributions of source code must retain the above copyright notice,
lypinator 0:bb348c97df44 10 * this list of conditions and the following disclaimer.
lypinator 0:bb348c97df44 11 * 2. Redistributions in binary form must reproduce the above copyright notice,
lypinator 0:bb348c97df44 12 * this list of conditions and the following disclaimer in the documentation
lypinator 0:bb348c97df44 13 * and/or other materials provided with the distribution.
lypinator 0:bb348c97df44 14 * 3. Neither the name of STMicroelectronics nor the names of its contributors
lypinator 0:bb348c97df44 15 * may be used to endorse or promote products derived from this software
lypinator 0:bb348c97df44 16 * without specific prior written permission.
lypinator 0:bb348c97df44 17 *
lypinator 0:bb348c97df44 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
lypinator 0:bb348c97df44 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
lypinator 0:bb348c97df44 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
lypinator 0:bb348c97df44 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
lypinator 0:bb348c97df44 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
lypinator 0:bb348c97df44 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
lypinator 0:bb348c97df44 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
lypinator 0:bb348c97df44 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
lypinator 0:bb348c97df44 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
lypinator 0:bb348c97df44 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
lypinator 0:bb348c97df44 28 *******************************************************************************
lypinator 0:bb348c97df44 29 */
lypinator 0:bb348c97df44 30 #ifndef MBED_COMMON_OBJECTS_H
lypinator 0:bb348c97df44 31 #define MBED_COMMON_OBJECTS_H
lypinator 0:bb348c97df44 32
lypinator 0:bb348c97df44 33 #include "cmsis.h"
lypinator 0:bb348c97df44 34 #include "PortNames.h"
lypinator 0:bb348c97df44 35 #include "PeripheralNames.h"
lypinator 0:bb348c97df44 36 #include "PinNames.h"
lypinator 0:bb348c97df44 37
lypinator 0:bb348c97df44 38 #ifdef __cplusplus
lypinator 0:bb348c97df44 39 extern "C" {
lypinator 0:bb348c97df44 40 #endif
lypinator 0:bb348c97df44 41
lypinator 0:bb348c97df44 42 struct pwmout_s {
lypinator 0:bb348c97df44 43 PWMName pwm;
lypinator 0:bb348c97df44 44 PinName pin;
lypinator 0:bb348c97df44 45 uint32_t prescaler;
lypinator 0:bb348c97df44 46 uint32_t period;
lypinator 0:bb348c97df44 47 uint32_t pulse;
lypinator 0:bb348c97df44 48 uint8_t channel;
lypinator 0:bb348c97df44 49 uint8_t inverted;
lypinator 0:bb348c97df44 50 };
lypinator 0:bb348c97df44 51
lypinator 0:bb348c97df44 52 struct serial_s {
lypinator 0:bb348c97df44 53 UARTName uart;
lypinator 0:bb348c97df44 54 int index;
lypinator 0:bb348c97df44 55 uint32_t baudrate;
lypinator 0:bb348c97df44 56 uint32_t databits;
lypinator 0:bb348c97df44 57 uint32_t stopbits;
lypinator 0:bb348c97df44 58 uint32_t parity;
lypinator 0:bb348c97df44 59 PinName pin_tx;
lypinator 0:bb348c97df44 60 PinName pin_rx;
lypinator 0:bb348c97df44 61 #if DEVICE_SERIAL_ASYNCH
lypinator 0:bb348c97df44 62 uint32_t events;
lypinator 0:bb348c97df44 63 #endif
lypinator 0:bb348c97df44 64 #if DEVICE_SERIAL_FC
lypinator 0:bb348c97df44 65 uint32_t hw_flow_ctl;
lypinator 0:bb348c97df44 66 PinName pin_rts;
lypinator 0:bb348c97df44 67 PinName pin_cts;
lypinator 0:bb348c97df44 68 #endif
lypinator 0:bb348c97df44 69 };
lypinator 0:bb348c97df44 70
lypinator 0:bb348c97df44 71 struct spi_s {
lypinator 0:bb348c97df44 72 SPI_HandleTypeDef handle;
lypinator 0:bb348c97df44 73 IRQn_Type spiIRQ;
lypinator 0:bb348c97df44 74 SPIName spi;
lypinator 0:bb348c97df44 75 PinName pin_miso;
lypinator 0:bb348c97df44 76 PinName pin_mosi;
lypinator 0:bb348c97df44 77 PinName pin_sclk;
lypinator 0:bb348c97df44 78 PinName pin_ssel;
lypinator 0:bb348c97df44 79 #ifdef DEVICE_SPI_ASYNCH
lypinator 0:bb348c97df44 80 uint32_t event;
lypinator 0:bb348c97df44 81 uint8_t transfer_type;
lypinator 0:bb348c97df44 82 #endif
lypinator 0:bb348c97df44 83 };
lypinator 0:bb348c97df44 84
lypinator 0:bb348c97df44 85 struct i2c_s {
lypinator 0:bb348c97df44 86 /* The 1st 2 members I2CName i2c
lypinator 0:bb348c97df44 87 * and I2C_HandleTypeDef handle should
lypinator 0:bb348c97df44 88 * be kept as the first members of this struct
lypinator 0:bb348c97df44 89 * to have get_i2c_obj() function work as expected
lypinator 0:bb348c97df44 90 */
lypinator 0:bb348c97df44 91 I2CName i2c;
lypinator 0:bb348c97df44 92 I2C_HandleTypeDef handle;
lypinator 0:bb348c97df44 93 uint8_t index;
lypinator 0:bb348c97df44 94 int hz;
lypinator 0:bb348c97df44 95 PinName sda;
lypinator 0:bb348c97df44 96 PinName scl;
lypinator 0:bb348c97df44 97 IRQn_Type event_i2cIRQ;
lypinator 0:bb348c97df44 98 IRQn_Type error_i2cIRQ;
lypinator 0:bb348c97df44 99 uint8_t XferOperation;
lypinator 0:bb348c97df44 100 volatile uint8_t event;
lypinator 0:bb348c97df44 101 #if DEVICE_I2CSLAVE
lypinator 0:bb348c97df44 102 uint8_t slave;
lypinator 0:bb348c97df44 103 volatile uint8_t pending_slave_tx_master_rx;
lypinator 0:bb348c97df44 104 volatile uint8_t pending_slave_rx_maxter_tx;
lypinator 0:bb348c97df44 105 #endif
lypinator 0:bb348c97df44 106 #if DEVICE_I2C_ASYNCH
lypinator 0:bb348c97df44 107 uint32_t address;
lypinator 0:bb348c97df44 108 uint8_t stop;
lypinator 0:bb348c97df44 109 uint8_t available_events;
lypinator 0:bb348c97df44 110 #endif
lypinator 0:bb348c97df44 111 };
lypinator 0:bb348c97df44 112
lypinator 0:bb348c97df44 113 #if DEVICE_FLASH
lypinator 0:bb348c97df44 114 struct flash_s {
lypinator 0:bb348c97df44 115 uint32_t dummy;
lypinator 0:bb348c97df44 116 };
lypinator 0:bb348c97df44 117 #endif
lypinator 0:bb348c97df44 118
lypinator 0:bb348c97df44 119 struct analogin_s {
lypinator 0:bb348c97df44 120 ADC_HandleTypeDef handle;
lypinator 0:bb348c97df44 121 PinName pin;
lypinator 0:bb348c97df44 122 uint8_t channel;
lypinator 0:bb348c97df44 123 };
lypinator 0:bb348c97df44 124
lypinator 0:bb348c97df44 125 #define GPIO_IP_WITHOUT_BRR
lypinator 0:bb348c97df44 126 #include "gpio_object.h"
lypinator 0:bb348c97df44 127
lypinator 0:bb348c97df44 128 #if DEVICE_ANALOGOUT
lypinator 0:bb348c97df44 129 struct dac_s {
lypinator 0:bb348c97df44 130 DACName dac;
lypinator 0:bb348c97df44 131 uint32_t channel;
lypinator 0:bb348c97df44 132 DAC_HandleTypeDef handle;
lypinator 0:bb348c97df44 133 };
lypinator 0:bb348c97df44 134 #endif
lypinator 0:bb348c97df44 135
lypinator 0:bb348c97df44 136 #if DEVICE_CAN
lypinator 0:bb348c97df44 137 struct can_s {
lypinator 0:bb348c97df44 138 CAN_HandleTypeDef CanHandle;
lypinator 0:bb348c97df44 139 int index;
lypinator 0:bb348c97df44 140 int hz;
lypinator 0:bb348c97df44 141 };
lypinator 0:bb348c97df44 142 #endif
lypinator 0:bb348c97df44 143
lypinator 0:bb348c97df44 144 #ifdef __cplusplus
lypinator 0:bb348c97df44 145 }
lypinator 0:bb348c97df44 146 #endif
lypinator 0:bb348c97df44 147
lypinator 0:bb348c97df44 148 #endif
lypinator 0:bb348c97df44 149