The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.
Dependents: hello SerialTestv11 SerialTestv12 Sierpinski ... more
mbed 2
This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.
TARGET_SAMR21G18A/TOOLCHAIN_ARM_MICRO/objects.h
- Committer:
- AnnaBridge
- Date:
- 2019-02-20
- Revision:
- 172:65be27845400
- Parent:
- 171:3a7713b1edbc
File content as of revision 172:65be27845400:
/* mbed Microcontroller Library * Copyright (c) 2006-2015 ARM Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef MBED_OBJECTS_H #define MBED_OBJECTS_H #include "cmsis.h" #include "PortNames.h" #include "PeripheralNames.h" #include "gpio_object.h" #include "tc.h" #include "tcc.h" #include "adc.h" #include "extint.h" #include "i2c_master.h" #include "i2c_slave.h" #include "dma_api.h" #if DEVICE_ANALOGOUT #include "dac.h" #endif #ifdef __cplusplus extern "C" { #endif struct gpio_irq_s { uint8_t irqmask; uint32_t port; uint32_t pin; uint32_t ch; struct extint_chan_conf config_extint_chan; }; struct port_s { __IO uint32_t *OUTCLR; __IO uint32_t *OUTSET; __I uint32_t *IN; __I uint32_t *OUT; PortName port; uint32_t mask; uint8_t powersave; uint8_t mode; uint8_t direction; }; struct serial_s { Sercom *usart; uint32_t index; uint32_t parity; uint32_t stopbits; uint32_t character_size; uint32_t mux_setting; uint32_t baudrate; PinName pins[4]; #if DEVICE_SERIAL_ASYNCH uint32_t events; #endif }; struct analogin_s { ADCName adc; struct adc_config config_adc; }; #if DEVICE_ANALOGOUT struct dac_s { DACName dac; PinName pin; uint32_t channel; struct dac_module dac_instance; }; #endif struct pwmout_s { struct tcc_module tcc; PinName pin; uint32_t period; float duty_cycle; double us_per_cycle; enum gclk_generator clock_source; enum tc_clock_prescaler clock_prescaler; }; struct i2c_s { struct i2c_master_module master; struct i2c_slave_module slave; uint8_t mode; uint32_t baud_rate; uint32_t baud_rate_high_speed; uint8_t start_pending; PinName pins[2]; #if DEVICE_I2C_ASYNCH uint32_t events; uint32_t handler; struct i2c_master_packet wr_packet; struct i2c_master_packet rd_packet; #endif }; struct spi_s { Sercom *spi; uint8_t mode; PinName pins[4]; #if DEVICE_SPI_ASYNCH uint8_t status; uint32_t mask; uint32_t event; void *tx_buffer; void *rx_buffer; uint8_t dma_usage; #endif }; #ifdef __cplusplus } #endif #endif