no-OS
parameters.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * @file parameters.h
3  * @brief Parameters header file
4  * @author Robert Budai (robert.budai@analog.com)
5  ********************************************************************************
6  * Copyright (c) 2024 Analog Devices, Inc.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright notice,
12  * this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright notice,
15  * this list of conditions and the following disclaimer in the documentation
16  * and/or other materials provided with the distribution.
17  *
18  * 3. Neither the name of Analog Devices, Inc. nor the names of its
19  * contributors may be used to endorse or promote products derived from this
20  * software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. “AS IS” AND ANY EXPRESS OR
23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
25  * EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
28  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
31  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  *******************************************************************************/
33 
34 #ifndef __PARAMETERS_H__
35 #define __PARAMETERS_H__
36 
37 /******************************************************************************/
38 /***************************** Include Files **********************************/
39 /******************************************************************************/
40 
41 #include "maxim_gpio.h"
42 #include "maxim_i2c.h"
43 #include "maxim_irq.h"
44 #include "maxim_spi.h"
45 #include "maxim_timer.h"
46 #include "maxim_uart.h"
47 #include "maxim_uart_stdio.h"
48 #include "maxim_usb_uart.h"
49 
50 /******************************************************************************/
51 /********************** Macros and Constants Definitions **********************/
52 /******************************************************************************/
53 
54 #define INTC_DEVICE_ID 0
55 #define UART_DEVICE_ID 1
56 #define UART_BAUDRATE 115200
57 #define UART_IRQ_ID USB_IRQn
58 #define UART_OPS &max_usb_uart_ops
59 #define UART_EXTRA &iio_demo_usb_uart_extra_ip
60 
61 #define SPI_CS 0
62 #define SPI_DEVICE_ID 2
63 #define SPI_BAUDRATE 15000000
64 #define SPI_OPS &max_spi_ops
65 
66 #define I2C_EXTRA &vddioh_i2c_extra
67 #define SPI_PQM_DEVICE_ID 1
68 #define SPI_PQM_BAUDRATE 6000000
69 #define SPI_PQM_EXTRA &spi_extra_ip
70 #define UART_STDIO_EXT &uart_stdio_extra_ip
71 
72 #define TIMER_DEVICE_ID 0
73 #define TIMER_FREQUENCY 1000
74 #define TIMER_TICK_PERIOD 16384
75 #define TIMER_OPS &max_timer_ops
76 #define TIMER_IRQ_ID TMR0_IRQn
77 #define TIMER_IRQ_OPS &max_irq_ops
78 #define TIMER_IRQ_EXTRA NULL
79 #define TIMER_CB_HANDLE MXC_TMR0
80 #define TIMER_TRIG_IRQ_ID TMR0_IRQn
81 
82 #define RESET_GPIO_PIN_NUM 27
83 #define RESET_GPIO_PORT_NUM 1
84 #define GPIO_OPS &max_gpio_ops
85 #define RESET_GPIO_EXTRA &max_reset_gpio_extra_ip
86 
87 #define INTR_GPIO_PIN_NUM 30
88 #define INTR_GPIO_PORT_NUM 0
89 #define INTR_GPIO_EXTRA &max_reset_gpio_extra_ip
90 #define INTR_GPIO_IRQ_ID 0
91 #define INTR_OPS &max_gpio_irq_ops
92 
93 /******************************************************************************/
94 /************************ Variable Declarations ******************************/
95 /******************************************************************************/
96 
98 extern struct max_spi_init_param spi_extra_ip;
104 
105 #endif /* __PARAMETERS_H__ */
iio_demo_usb_uart_extra_ip
struct max_usb_uart_init_param iio_demo_usb_uart_extra_ip
Definition: parameters.c:56
uart_stdio_extra_ip
struct max_uart_init_param uart_stdio_extra_ip
Definition: parameters.c:54
max_i2c_init_param
Definition: maxim_i2c.h:58
max_spi_init_param
Maxim specific SPI initialization parameters.
Definition: maxim_spi.h:53
max_reset_gpio_extra_ip
struct max_gpio_init_param max_reset_gpio_extra_ip
Definition: parameters.c:60
vddioh_i2c_extra
struct max_i2c_init_param vddioh_i2c_extra
Definition: parameters.c:44
iio_demo_uart_extra_ip
struct max_uart_init_param iio_demo_uart_extra_ip
Definition: parameters.c:42
max_uart_init_param
Aditional UART config parameters.
Definition: maxim_uart.h:55
max_intr_gpio_extra_ip
struct max_gpio_init_param max_intr_gpio_extra_ip
Definition: parameters.c:64
max_gpio_init_param
GPIO platform specific init parameters.
Definition: maxim_gpio.h:55
max_usb_uart_init_param
Aditional UART config parameters.
Definition: maxim_usb_uart.h:42
spi_extra_ip
struct stm32_spi_init_param spi_extra_ip
Definition: parameters.c:138