custom-board-bundle-sample-.../firmware/hw_layer/accelerometer.cpp

76 lines
1.9 KiB
C++
Raw Normal View History

2016-05-19 19:03:18 -07:00
/*
2017-08-21 07:55:34 -07:00
* @file accelerometer.cpp
*
* stm32f4discovery has MEMS LIS302DL
* www.st.com/resource/en/datasheet/lis302dl.pdf
*
* SPI1
* LIS302DL_SPI_SCK PA5
* LIS302DL_SPI_MISO PA6
* LIS302DL_SPI_MOSI PA7
* LIS302DL_SPI_CS_PIN PE3
*
*
2016-05-19 19:03:18 -07:00
*
* @date May 19, 2016
2017-01-03 03:05:22 -08:00
* @author Andrey Belomutskiy, (c) 2012-2017
2016-05-19 19:03:18 -07:00
*/
2017-08-18 13:18:11 -07:00
#include "accelerometer.h"
#include "lis302dl.h"
#include "hardware.h"
EXTERN_ENGINE;
void configureAccelerometerPins(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
engineConfiguration->LIS302DLCsPin = GPIOE_3;
// boardConfiguration->is_enabled_spi_1 = true; // we have a conflict with PA5 input pin
// stm32f4discovery defaults
boardConfiguration->spi1mosiPin = GPIOA_7;
boardConfiguration->spi1misoPin = GPIOA_6;
boardConfiguration->spi1sckPin = GPIOA_5;
}
2016-05-19 19:03:18 -07:00
2017-05-15 20:33:22 -07:00
void initAccelerometer(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
2016-05-19 19:03:18 -07:00
2016-05-23 17:02:39 -07:00
}
2016-05-19 19:03:18 -07:00
2017-05-15 20:33:22 -07:00
float getLongitudinalAcceleration(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
2016-05-23 17:02:39 -07:00
return 0;
}
2017-05-15 20:33:22 -07:00
float getTransverseAcceleration(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
2016-05-23 17:02:39 -07:00
return 0;
}
2017-08-21 07:55:34 -07:00
#if EFI_MEMS || defined(__DOXYGEN__)
static SPIDriver *spip = &SPID1; // todo: make this configurable
static spi_device_e device = SPI_DEVICE_1;
static OutputPin memsCs;
void initMems(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
if (engineConfiguration->LIS302DLCsPin == GPIOA_0)
return; // temporary code to handle old configurations
if (engineConfiguration->LIS302DLCsPin == GPIO_UNASSIGNED)
return; // not used
turnOnSpi(device);
memsCs.initPin("LIS302 CS", engineConfiguration->LIS302DLCsPin);
/* LIS302DL initialization.*/
lis302dlWriteRegister(spip, LIS302DL_CTRL_REG1, 0x47); // enable device, enable XYZ
lis302dlWriteRegister(spip, LIS302DL_CTRL_REG2, 0x00); // 4 wire mode
lis302dlWriteRegister(spip, LIS302DL_CTRL_REG3, 0x00);
int8_t x = (int8_t)lis302dlReadRegister(spip, LIS302DL_OUTX);
int8_t y = (int8_t)lis302dlReadRegister(spip, LIS302DL_OUTY);
}
#endif /* EFI_MEMS */