amrangle  2.0.0.0
Main Page

AMR Angle click

AMR Angle Click is a compact add-on board containing an anisotropic magnetoresistive measurement solution ideal for either angle or linear position measurements. This board features the ADA4571, an AMR sensor with clean and amplified cosine and sine output signals related to a rotating magnetic field angle from Analog Devices.

click Product page


Click library

  • Author : Stefan Nikolic
  • Date : jan 2021.
  • Type : SPI type

Software Support

We provide a library for the AMRAngle Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

Package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on mikroE github account.

Library Description

This library contains API for AMRAngle Click driver.

Standard key functions :

Example key functions :

  • amrangle_angle_read This function reads an angle in degrees.
  • amrangle_read_vtp_temp This function returns calculated temperature using vtp pin voltage.
  • amrangle_gain_control_mode This function sets the gain control mode pin which is used to compensate the sensor amplitude output for reduction of temperature variation.
    void amrangle_gain_control_mode ( amrangle_t *ctx, uint8_t gain_control );

Example Description

This demo application shows the performance of AMR Angle click by reading and presenting the temperature and angle results on the UART log.

The demo application is composed of two sections :

Application Init

Starts up the UART LOG, SPI and ADC drivers. Performs the default settings like setting the adc vref, resolution and gpio pins.

void application_init ( void ) {
log_cfg_t log_cfg;
amrangle_cfg_t amrangle_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
amrangle_cfg_setup( &amrangle_cfg, AMRANGLE_ARM_TOOLCHAIN ); // Change when switching profile
AMRANGLE_MAP_MIKROBUS( amrangle_cfg, MIKROBUS_1 );
err_t init_flag = amrangle_init( &amrangle, &amrangle_cfg );
if ( init_flag == SPI_MASTER_ERROR ) {
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
amrangle_default_cfg( &amrangle );
Delay_ms( 500 );
log_info( &logger, " Application Task " );
}

Application Task

The application task consists of reading the temperature and angle data from the sensor and sending that data to the UART log every second.

void application_task ( void ) {
temperature_res = amrangle_read_vtp_temp( &amrangle );
angle_res = amrangle_angle_read( &amrangle );
log_printf( &logger, " Temperature: %.2f C\r\n", temperature_res );
log_printf( &logger, " Angle: %.2f degrees\r\n", angle_res );
log_printf( &logger, " --------------------------\r\n" );
Delay_ms( 1000 );
}

The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on mikroE github account.

Other mikroE Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.AMRAngle

Additional notes and informations

Depending on the development board you are using, you may need USB UART click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all Mikroelektronika compilers, or any other terminal application of your choice, can be used to read the message.


amrangle_read_vtp_temp
float amrangle_read_vtp_temp(amrangle_t *ctx)
AMR Angle read temperature function.
amrangle_t
AMR Angle Click context object.
Definition: amrangle.h:148
AMRANGLE_MAP_MIKROBUS
#define AMRANGLE_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition: amrangle.h:132
AMRANGLE_ARM_TOOLCHAIN
#define AMRANGLE_ARM_TOOLCHAIN
AMR Angle arm toolchain.
Definition: amrangle.h:60
application_task
void application_task(void)
Definition: main.c:70
amrangle_angle_read
float amrangle_angle_read(amrangle_t *ctx)
AMR Angle read angle function.
application_init
void application_init(void)
Definition: main.c:36
amrangle_cfg_t
AMR Angle Click configuration object.
Definition: amrangle.h:169
amrangle_gain_control_mode
void amrangle_gain_control_mode(amrangle_t *ctx, uint8_t gain_control)
AMR Angle gain control mode function.
amrangle_init
err_t amrangle_init(amrangle_t *ctx, amrangle_cfg_t *cfg)
AMR Angle initialization function.
amrangle_cfg_setup
void amrangle_cfg_setup(amrangle_cfg_t *cfg, uint8_t sel_toolchain)
AMR Angle configuration object setup function.
amrangle_default_cfg
void amrangle_default_cfg(amrangle_t *ctx)
AMR Angle default configuration function.