/*! ***************************************************************************** @file: AD5940Main.c @author: Neo Xu @brief: Used to control specific application and furfur process data. ----------------------------------------------------------------------------- Copyright (c) 2017-2019 Analog Devices, Inc. All Rights Reserved. This software is proprietary to Analog Devices, Inc. and its licensors. By using this software you agree to the terms of the associated Analog Devices Software License Agreement. *****************************************************************************/ /** * @addtogroup AD5940_System_Examples * @{ * @defgroup BioElec_Example * @{ */ #include "ad5940.h" #include "AD5940.h" #include #include "string.h" #include "math.h" #include "ElectrodermalActivity.h" #define APPBUFF_SIZE 512 uint32_t AppBuff[APPBUFF_SIZE]; float LFOSCFreq; /* Measured LFOSC frequency */ uint32_t ResistorForBaseline = 0; /* print EDA result to uart */ AD5940Err EDAShowResult(void *pData, uint32_t DataCount) { float RtiaMag; /*Process data*/ fImpCar_Type *pImp = (fImpCar_Type*)pData; AppEDACtrl(EDACTRL_GETRTIAMAG, &RtiaMag); /*Process data*/ for(int i=0;iMaxSeqLen = 512; pCfg->LfoscClkFreq = 32000; /* Don't do LFOSC calibration now. We assume the default LFOSC is trimmed. */ pCfg->RtiaAutoScaleEnable = bTRUE; /* We manually select resistor value. */ pCfg->LptiaRtiaSel = LPTIARTIA_120K; pCfg->SinAmplitude = 1100*3/4; /* Set excitation voltage to 0.75 times of full range. */ pCfg->SinFreq = 100.0f; pCfg->SampleFreq = 400.0f; /* Do not change sample frequency unless you know how it works. */ pCfg->EDAODR = 4.0f; /* ODR decides how frequently to start the engine to measure impedance. */ pCfg->FifoThresh = 4; /* The minimum threshold value is 4, and should always be 4*N, where N is 1,2,3... */ pCfg->bParaChanged = bTRUE; } void AD5940_Main(void) { uint32_t temp; fImpCar_Type EDABase = { .Real = 24299.84f, .Image = -110778.71f, }; AD5940PlatformCfg(); AD5940EDAStructInit(); /* Configure your parameters in this function */ AppEDAInit(AppBuff, APPBUFF_SIZE); /* Initialize BIA application. Provide a buffer, which is used to store sequencer commands */ AppEDACtrl(APPCTRL_START, 0); /* Control BIA measurement to start. Second parameter has no meaning with this command. */ AppEDACtrl(EDACTRL_SETBASE, &EDABase); ResistorForBaseline = 20000; /* Above result is obtained using 20kOhm resistor on BioElec Rev C board. */ while(1) { /* Check if interrupt flag which will be set when interrupt occurred. */ if(AD5940_GetMCUIntFlag()) { AD5940_ClrMCUIntFlag(); /* Clear this flag */ temp = APPBUFF_SIZE; AppEDAISR(AppBuff, &temp); /* Deal with it and provide a buffer to store data we got */ EDAShowResult(AppBuff, temp); /* Show the results to UART */ } } } uint32_t rst_eda_base(uint32_t para1, uint32_t para2) { printf("Reset EDA impedance baseline\n"); ResistorForBaseline = 0; AppEDACtrl(EDACTRL_RSTBASE, 0); return 0; } uint32_t set_eda_base(uint32_t para1, uint32_t para2) { fImpCar_Type ImpAVR; printf("Set EDA impedance baseline with current measured impedance average result\n"); printf("Resistor used to measure baseline is %dOhm\n", para1); ResistorForBaseline = para1; AppEDACtrl(EDACTRL_GETAVR, &ImpAVR); AppEDACtrl(EDACTRL_SETBASE, &ImpAVR); return 0; } uint32_t get_average_imp(uint32_t para1, uint32_t para2) { fImpCar_Type ImpAVR; printf("Measured average impedance result is:\n"); AppEDACtrl(EDACTRL_GETAVR, &ImpAVR); printf("(Real,Image)=(%.2f,%.2f)Ohm\n", ImpAVR.Real, ImpAVR.Image); return 0; } uint32_t eda_start(uint32_t para1, uint32_t para2) { printf("Start EDA measurement\n"); AppEDACtrl(APPCTRL_START, 0); return 0; } uint32_t eda_stop(uint32_t para1, uint32_t para2) { printf("Stop EDA measurement right now!!\n"); AppEDACtrl(APPCTRL_STOPNOW, 0); return 0; } /** * @} * @} * */