83 lines
2.2 KiB
C
83 lines
2.2 KiB
C
#include "accelerometer.h"
|
|
double x;
|
|
double y;
|
|
double angle;
|
|
|
|
void accelero_init(void){
|
|
RCC -> CFGR |= (0x1<<15);
|
|
RCC-> CFGR &= ~ (0x1<<14);
|
|
LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_ADC1);
|
|
LL_APB1_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_GPIOC);
|
|
|
|
LL_GPIO_InitTypeDef pc0, pc1;
|
|
LL_ADC_InitTypeDef adc;
|
|
LL_ADC_REG_InitTypeDef adcReg;
|
|
|
|
pc0.Pin = LL_GPIO_PIN_0;
|
|
pc0.Mode = LL_GPIO_MODE_ANALOG;
|
|
pc1.Pin = LL_GPIO_PIN_1;
|
|
pc1.Mode = LL_GPIO_MODE_ANALOG;
|
|
|
|
|
|
adc.DataAlignment = LL_ADC_DATA_ALIGN_RIGHT;
|
|
adc.SequencersScanMode = LL_ADC_SEQ_SCAN_DISABLE;
|
|
LL_ADC_Init(ADC1, &adc);
|
|
|
|
adcReg.TriggerSource = LL_ADC_REG_TRIG_SOFTWARE ;
|
|
adcReg.SequencerLength = LL_ADC_REG_SEQ_SCAN_DISABLE;
|
|
adcReg.SequencerDiscont = LL_ADC_REG_SEQ_DISCONT_DISABLE;
|
|
adcReg.ContinuousMode = LL_ADC_REG_CONV_SINGLE;
|
|
adcReg.DMATransfer = LL_ADC_REG_DMA_TRANSFER_NONE;
|
|
|
|
|
|
LL_ADC_REG_Init(ADC1, &adcReg);
|
|
|
|
/*LL_ADC_SetChannelSamplingTime(ADC2, LL_ADC_CHANNEL_10, LL_ADC_SAMPLINGTIME_1CYCLE_5);
|
|
LL_ADC_SetChannelSamplingTime(ADC2, LL_ADC_CHANNEL_11, LL_ADC_SAMPLINGTIME_1CYCLE_5);
|
|
*/
|
|
|
|
LL_ADC_Enable(ADC1);
|
|
|
|
//LL_ADC_EnableIT_EOS(ADC1);
|
|
//wait 0,2 µs, calibration is advised
|
|
//LL_ADC_StartCalibration(ADC1);
|
|
}
|
|
|
|
|
|
double accelero_get_x(void){
|
|
LL_ADC_REG_SetSequencerRanks(ADC1, LL_ADC_REG_RANK_1, LL_ADC_CHANNEL_10);
|
|
LL_ADC_REG_StartConversionSWStart(ADC1);
|
|
while (LL_ADC_IsActiveFlag_EOS(ADC1) != 1){
|
|
//__asm__"nope";
|
|
}
|
|
double x= LL_ADC_REG_ReadConversionData12(ADC1);
|
|
return x;
|
|
}
|
|
|
|
double accelero_get_y(void){
|
|
LL_ADC_REG_SetSequencerRanks(ADC1, LL_ADC_REG_RANK_1, LL_ADC_CHANNEL_11);
|
|
LL_ADC_REG_StartConversionSWStart(ADC1);
|
|
while (LL_ADC_IsActiveFlag_EOS(ADC1) != 1){
|
|
//__asm__"nope";
|
|
}
|
|
double y = LL_ADC_REG_ReadConversionData12(ADC1);
|
|
return y;
|
|
}
|
|
|
|
|
|
int accelero_angle_bon(void){
|
|
x = accelero_get_x();
|
|
y = accelero_get_y();
|
|
angle = x/y;
|
|
|
|
if (angle>tan(0.698132)){
|
|
return 0;
|
|
}else {
|
|
return 1;
|
|
}
|
|
|
|
//le flag EOC n'est jamais mis à un ....
|
|
// Soit la conversion est mal faite soit on n'utilise pas bien la simulation
|
|
//soit on n'utilise pas bien isActiveFlag dans la boucle
|
|
}
|
|
|