added reading flash functions for stm32l0xx series
1. implemented HAL_StatusTypeDef HAL_FLASH_ReadWord(uint32_t Address, uint32_t* Data); and HAL_StatusTypeDef HAL_FLASH_ReadHalfWord(uint32_t Address, uint16_t* Data); which allows user to read the internal FLASH (with out read protection) 2. implemeted device_config struct to store device configurations, e.g. magnetometer fullscale, report period, etc. 3. added demonstration code of using flash reading apis in lora_demo.c, in which the configuration sent from the cloud is stored into the internal Data EEPROM bank1, and each time when the device is booted, the configurations would be loaded from the Data EEPROM and used to initialize the application.
This commit is contained in:
@@ -3,19 +3,20 @@
|
||||
* @file bsp.c
|
||||
* @author jieranzhi
|
||||
* @brief provide high level interfaces to manage the sensors on the
|
||||
* application, this is a modified version of the official api
|
||||
* application
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "bsp.h"
|
||||
|
||||
void BSP_Sensor_Init(void)
|
||||
void BSP_Sensor_Init(DeviceConfig_TypeDef config)
|
||||
{
|
||||
/* Initialize sensors */
|
||||
HTS221_Init();
|
||||
LPS22HB_Init();
|
||||
LIS3MDL_Init();
|
||||
LIS3MDL_Set_FullScale((LIS3MDL_FullScaleTypeDef)config.magn_fullscale);
|
||||
}
|
||||
|
||||
void BSP_Sensor_Read(sensor_data_t *sensor_data)
|
||||
|
Reference in New Issue
Block a user