資料介紹
Table of Contents
AD7124 Example on STM32 Processors
Introduction
This describes how to take the AD7124 example code and integrate it with STM32 firmware libraries in a suitable development environment to produce a complete program. The IDE used here is the STM32CubeIDE, but the general procedure can be applied to other IDEs.
Useful links
Overview
The AD7124 is a low power, low noise, completely integrated analog front end for high precision measurement applications. The device contains a low noise, 24-bit Σ-Δ analog-to-digital converter (ADC). The AD7124 example application provides a terminal based console interface that allows a user to select between different configurations, and to sample data in single or continuous conversion modes.
The example makes use of the AD7124 No-OS software drivers and platform drivers that are using the STM32 HAL firmware libraries.
Software Integration Guide
Downloads
Project Creation
- If you have not already done so, install the STM32CubeIDE available from www.st.com.
- In the Firmware Update section of the STM32CubeIDE preferences, set the location to where the firmware package is going to be stored.
- You may want to place this in a common location, e.g. 'C:/ST/Repository' and not in a directory located under your home directory, to avoid user specific paths in any shared configuration files
- Select the File ? New ? STM32 project menu option.
- Select the MCU part number or Board being used
- Give the Project a name, select target language, and project type of STM32Cube
- Make sure the Target Reference is correct as it can't be changed once the project is created, and the firmware package repository path is as expected. Set the Code Generator Options to reference library files, or copy library files in your project, depending on how you want to structure your project.
- When you click Finish, the STM32CudeIDE will download the firmware library if required and unzip it to the repository location specified above. This file is typically 100's MB in size so this will take several minutes to complete.
Configuring the Project
The Device Configuration Tool with automatic code generation is used to define pin usage and other default modes of operation for the NUCLEO-L476. In addition there are some build and linker settings that may be required depending on the default project build configuration.
Device Configuration Tool
A 4-wire SPI bus is used to connect AD7124 to the NUCLEO-L476RG board, and a UART is used to provide the serial I/O for the console interface. An LED is also used to indicate activity. The following sections detail the configuration settings that need to be made for each of these.
SPI
SPI1 port on the processor is used to communicate with the AD7124, with the pin assigned to each function as shown here, with the corresponding label.
The pin PB10 is used as a software controlled chips select for SP1, and so its mode must be set to GPIO_output, and set the user label to SPI1_NSS to match what is used in the platform driver file. The Connectivity ? SPI1 configuration settings are shown here.
DMA and interrupts are not used and don't need to be configured. The SPI1 GPIO Settings are as follows.
Serial UART
The serial port uses USART2, and no DMA or interrupts need to be configured.
The USART2 GPIO settings are as shown.
GPIO
An LED is toggled on the NUCLEO-L476 board to indicate sampling and other activity. The activity LED is controlled by Port A, Pin 5, and needs to enabled as digital output to support this function.
Build Settings
The printf(…) function is used to print numbers formatted as floating point values in the terminal view. As this feature is often disabled by default due to the additional memory requirement, floating point support in printf(…) must be enabled. In the Project properties window, under 'C/C++ Build ? Settings ? MCU GCC linker ? Miscellaneous > Other Flags' add a '-u _printf_float' option.
If there are other source or include directories that need to be added to support the project build, they should also be added to the relevant 'Include paths' in the MCU GCC Compiler section as required.
Linker Files
The default value for _estack may be incorrect in the *.ld files. This can cause problems when calling into certain library functions. In particular this can prevent the %f format specifier working with the floating point version of printf(…). If instead of a value like '1.23', the terminal output is '0.00', this can indicate a need to update the linker *.ld files. For the NUCLEO-L476RG, the RAM and the FLASH versions of the ld files contain the following:
/* Highest address of the user mode stack */ _estack = 0x20017fff; /* end of "RAM" Ram type memory */
Changing this as follows fixes the issues related to floating point support in printf:
/* Highest address of the user mode stack */ _estack = 0x20018000; /* end of "RAM" Ram type memory */
Source File Edits
When using the Device Configuration Tool, the code generator produces a two of these source files, main.c and main.h need minor edits to integrate the AD7124 example code. There may be an edit required to the _read(…) function in syscalls.c to work around an issue, but whether this is required, will depend on the specific library and build environment.
main.c
To keep the integration of the AD7124 example application with other user and platform specific code, there are only two functions that a user needs to call from their own code, typically as part of the main function.
- ad7124_app_initialize(..) that does all the one-time initialization work required by the app, mainly AD7124 device setup
- It is strongly recommended to test the return value from this function to determine if the initialization was successful or not
- A value less than 0 indicate failure.
/* Initialize the AD7124 application before the main loop */ int32_t setupResult; if ((setupResult = ad7124_app_initialize(AD7124_CONFIG_A)) < 0 ) { // Handle error setting up AD7124 here }
- adi_do_console_menu(…) displays the user menu to interact with the application features
- This can be called in a while(1) loop so that it is always displayed.
while(1) { // display the console menu for the AD7124 application adi_do_console_menu(&ad7124_main_menu); } ?
Both are defined in the “ad7124_console_app.h” header which needs to be added as #include file.
main.h
The AD7124 example assumes that all the STM32 hardware is initialized and appropriate SPI and UART port handles are available, and are used in platform_drivers.c and platform_support.c. The following extern declarations for the SPI and serial port handles are required in main.h to make them available to the platform specific code.
extern SPI_HandleTypeDef hspi1; extern UART_HandleTypeDef huart2;
syscalls.c
In the _read(…) function, the 'len' parameter passed in was found to always be '1024' for the library and build environment used to develop the example code.
int _read(int file, char *ptr, int len)
In order to support the use of getchar(), the expression 'len = 1;' was added immediately before the for loop in the _read(…) function. While this is sufficient for getchar() to work, it does not support use of other stdio.h functions such as scanf(…).
Adding AD7124 Example Files
The distribution of the AD7124 source and header files can be added to the project that has been created. The files can be added in a dedicated 'adi' directory, or in the main 'src' directory, or split as appropriate between 'src' and 'inc' directories, according to the file structure being used. If adding new source and header file locations, then these will need to be added to the build settings as necessary, in the relevant 'Include paths' in the MCU GCC Compiler configuration.
At this point, assuming that any necessary changes, pin names, port usage/configuration have been made, the project should compile cleanly.
Hardware Connections
Power & USB
A 9V DC supply (barrel jack, center pin positive) is required to power the EVAl-AD7124-8SDZ evaluation board. The NUCLEO-476RG is powered via the USB connection to the PC, which also provides the serial UART connection back to the PC. The NUCLEO-476 creates a COM port that can be connected to by a terminal emulator, e.g. putty.
SPI Interface
SPI connections to the host processor board can be made to the relevant test points on the eval board, or more easily with an SDP Breakout Board.
AD7124 SPI Signal | SDP Breakout Board | NUCLEO-L476 |
---|---|---|
GND | 81 | GND on CN5.7 |
SCLK | 82 | D3 (PB3) on CN9.4 |
DOUT/RDYB | 83 | D5 (PB4) on CN9.6 |
DIN | 84 | D4 (PB5) on CN9.5 |
CSB | 85 | D6 (PB10) on CN9.7 |
Analog Input
The screw terminal connections to J6 and J11 can be used to connect appropriate analog input signals to provide test stimulus to the AD7124.
In Configuration A
- AIN0/AIN1 are used for channel 0, simple voltage measurement
In Configuration B
- AIN2/AIN3 go to the A2 thermocouple connector on the evaluation board, and are captured on channel 0. This uses an internal reference and has a bias voltage enabled on AIN2. A suitable thermocouple should connected to A2 for this measurement.
- AIN4/AIN5 are an RTD1000 measurement on channel 1. Excitation is provided from AIN1 for this. This requires an external RTD and reference resistor connected as show in the figure below.
Console Application
Once the hardware connections are made, and the compiled code programmed into the board, open the terminal program, and reset the hardware to see the AD7124 menu that allows a user to perform a variety of functions. These include reset the device, program one of the pre-defined configurations, and sample data that is displayed on screen or streamed so it can captured by the console.
- 基于MDK的STM32處理器開發應用.zip
- 到底64位處理器和32位處理器有什么區別呢?資料下載
- “硬件軟件化”,32位處理器的開發與8位處理器的開發資料下載
- 晶晨S905X4處理器快速參考手冊下載 24次下載
- STM32處理器存儲空間布局解析資料下載
- ADuCM3029處理器上的溫度-BLE演示
- STM32系列Cortex-M3處理器編程手冊免費下載 37次下載
- 基于MDK的STM32處理器開發應用PDF電子教材免費下載 59次下載
- STM32處理器的鋰電池組保護電路設計 29次下載
- 基于STM32處理器的鋰電池快速充電設計 25次下載
- 基于STM32處理器的μC_OS_移植 6次下載
- STM32系列ARM Cortex-M3處理器微控制器原理與實踐 24次下載
- 在W78E58處理器上移植的uCOS-II 12次下載
- 基于STM32處理器和PC主機的USB通信協議的實現 68次下載
- 基于ARM的PC/104處理器模塊設計
- 基于全志V853處理器的智能輔助駕駛算法介紹 96次閱讀
- STM32處理器A/D轉換輸入電阻與采樣時間的分析 8472次閱讀
- 全志T507處理器如何實現SPI轉CAN功能 2286次閱讀
- 對Cortex-A53處理器的性能分析及特點概述 13.9w次閱讀
- 分析Cortex-A7處理器與Cortex-A15處理器各自的優勢及區別 6607次閱讀
- 華為麒麟980處理器規格曝光 5209次閱讀
- cortex-a9是什么處理器_cortex-a9處理器介紹 2.5w次閱讀
- TMS320C6678處理器的VLFFT演示探討與研究 4220次閱讀
- a11處理器比a10快多少_A11處理器性能媲美英特爾i7? 1105次閱讀
- 驍龍625處理器與驍龍652處理器對比評測 10.3w次閱讀
- 詳細剖析高通發布的驍龍845處理器 5279次閱讀
- 單一處理器簡化RFID讀取器設計及RFID系統范例分析 1198次閱讀
- 32位嵌入式處理器與8位處理器應用開發的區別 1528次閱讀
- 蘋果推出64位處理器:對手機而言,意味著什么? 3983次閱讀
- 高通披露Snapdragon 400和200處理器細節 1137次閱讀
下載排行
本周
- 1電子電路原理第七版PDF電子教材免費下載
- 0.00 MB | 1491次下載 | 免費
- 2單片機典型實例介紹
- 18.19 MB | 95次下載 | 1 積分
- 3S7-200PLC編程實例詳細資料
- 1.17 MB | 27次下載 | 1 積分
- 4筆記本電腦主板的元件識別和講解說明
- 4.28 MB | 18次下載 | 4 積分
- 5開關電源原理及各功能電路詳解
- 0.38 MB | 11次下載 | 免費
- 6100W短波放大電路圖
- 0.05 MB | 4次下載 | 3 積分
- 7基于單片機和 SG3525的程控開關電源設計
- 0.23 MB | 4次下載 | 免費
- 8基于AT89C2051/4051單片機編程器的實驗
- 0.11 MB | 4次下載 | 免費
本月
- 1OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費
- 2PADS 9.0 2009最新版 -下載
- 0.00 MB | 66304次下載 | 免費
- 3protel99下載protel99軟件下載(中文版)
- 0.00 MB | 51209次下載 | 免費
- 4LabView 8.0 專業版下載 (3CD完整版)
- 0.00 MB | 51043次下載 | 免費
- 5555集成電路應用800例(新編版)
- 0.00 MB | 33562次下載 | 免費
- 6接口電路圖大全
- 未知 | 30320次下載 | 免費
- 7Multisim 10下載Multisim 10 中文版
- 0.00 MB | 28588次下載 | 免費
- 8開關電源設計實例指南
- 未知 | 21539次下載 | 免費
總榜
- 1matlab軟件下載入口
- 未知 | 935053次下載 | 免費
- 2protel99se軟件下載(可英文版轉中文版)
- 78.1 MB | 537793次下載 | 免費
- 3MATLAB 7.1 下載 (含軟件介紹)
- 未知 | 420026次下載 | 免費
- 4OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費
- 5Altium DXP2002下載入口
- 未知 | 233046次下載 | 免費
- 6電路仿真軟件multisim 10.0免費下載
- 340992 | 191183次下載 | 免費
- 7十天學會AVR單片機與C語言視頻教程 下載
- 158M | 183277次下載 | 免費
- 8proe5.0野火版下載(中文版免費下載)
- 未知 | 138039次下載 | 免費
評論
查看更多