precision-converters-firmware
app_config_mbed.h
Go to the documentation of this file.
1 /***************************************************************************/
13 #ifndef APP_CONFIG_MBED_H_
14 #define APP_CONFIG_MBED_H_
15 
16 /******************************************************************************/
17 /***************************** Include Files **********************************/
18 /******************************************************************************/
19 
20 #include <stdint.h>
21 #include <PinNames.h>
22 
23 #include "mbed_uart.h"
24 #include "mbed_irq.h"
25 #include "mbed_spi.h"
26 #include "mbed_i2c.h"
27 #include "mbed_pwm.h"
28 #include "mbed_gpio.h"
29 #include "mbed_gpio_irq.h"
30 
31 /******************************************************************************/
32 /********************** Macros and Constants Definition ***********************/
33 /******************************************************************************/
34 
35 /* Pin mapping of SDP-K1 w.r.t Arduino connector */
36 #define SPI_CSB ARDUINO_UNO_D10
37 #define SPI_HOST_SDO ARDUINO_UNO_D11
38 #define SPI_HOST_SDI ARDUINO_UNO_D12
39 #define SPI_SCK ARDUINO_UNO_D13
40 
41 #define I2C_SCL ARDUINO_UNO_D15
42 #define I2C_SDA ARDUINO_UNO_D14
43 
44 #define LDAC_PIN ARDUINO_UNO_D3
45 #define RESET_PIN ARDUINO_UNO_D7
46 #define CLR_PIN ARDUINO_UNO_D2
47 
48 /* Pins used to trigger a new (periodic) dac update event */
49 #define PWM_TRIGGER LDAC_PIN
50 
51 /* Console pin mapping on SDP-K1 */
52 #define UART_TX CONSOLE_TX
53 #define UART_RX CONSOLE_RX
54 
55 #define TRIGGER_INT_ID GPIO_IRQ_ID1
56 #define trigger_gpio_handle 0 // Unused macro
57 #define UART_ID 0 // Unused macro
58 #define SPI_ID 0 // Unused macro
59 #define TRIGGER_GPIO_IRQ_CTRL_ID 0 // Unused macro
60 
61 /* Define the max possible sampling (or update) rate for a given platform.
62  * Note: Max possible update rate is 71.428 KSPS per channel on IIO client.
63  * This is derived by testing the firmware on SDP-K1 controller board with STM32F469NI MCU
64  * using GCC and ARM compilers. The max possible update rate can vary from board to board and
65  * data continuity is not guaranteed above this update rate */
66 #define MAX_SAMPLING_RATE (71428)
67 
68 /******************************************************************************/
69 /********************** Public/Extern Declarations ****************************/
70 /******************************************************************************/
71 
72 extern struct mbed_uart_init_param mbed_uart_extra_init_params;
73 extern struct mbed_uart_init_param mbed_vcom_extra_init_params;
74 extern struct mbed_spi_init_param mbed_spi_extra_init_params;
75 extern struct mbed_pwm_init_param mbed_pwm_extra_init_params;
76 extern struct mbed_i2c_init_param mbed_i2c_extra_init_params;
77 extern struct mbed_gpio_irq_init_param mbed_trigger_gpio_irq_init_params;
78 
79 #endif /* APP_CONFIG_MBED_H_ */
struct mbed_pwm_init_param mbed_pwm_extra_init_params
Definition: app_config_mbed.c:69
struct mbed_gpio_irq_init_param mbed_trigger_gpio_irq_init_params
Definition: app_config_mbed.c:65
struct mbed_uart_init_param mbed_vcom_extra_init_params
Definition: app_config_mbed.c:42
struct mbed_uart_init_param mbed_uart_extra_init_params
Definition: app_config_mbed.c:31
struct mbed_spi_init_param mbed_spi_extra_init_params
Definition: app_config_mbed.c:54
struct mbed_i2c_init_param mbed_i2c_extra_init_params
Definition: app_config_mbed.c:69