EEPROM for SX1272

Dependencies:   X_NUCLEO_IKS01A1 driver_mbed_TH02 LoRaWAN-lib-v1_0_1 SX1272Lib mbed

Fork of Canada-SX1272-LoRaWAN-Bootcamp by Uttam Bhat

Committer:
ubhat
Date:
Sat Nov 04 20:05:46 2017 +0000
Revision:
2:19dd7bfcacf7
Parent:
1:428dbf097fe6
Add Grove Sensor application

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ubhat 0:6cc76d70e2a1 1 /*
ubhat 0:6cc76d70e2a1 2 / _____) _ | |
ubhat 0:6cc76d70e2a1 3 ( (____ _____ ____ _| |_ _____ ____| |__
ubhat 0:6cc76d70e2a1 4 \____ \| ___ | (_ _) ___ |/ ___) _ \
ubhat 0:6cc76d70e2a1 5 _____) ) ____| | | || |_| ____( (___| | | |
ubhat 0:6cc76d70e2a1 6 (______/|_____)_|_|_| \__)_____)\____)_| |_|
ubhat 0:6cc76d70e2a1 7 (C)2015 Semtech
ubhat 0:6cc76d70e2a1 8
ubhat 0:6cc76d70e2a1 9 Description: Target board general functions implementation
ubhat 0:6cc76d70e2a1 10
ubhat 0:6cc76d70e2a1 11 License: Revised BSD License, see LICENSE.TXT file include in the project
ubhat 0:6cc76d70e2a1 12
ubhat 0:6cc76d70e2a1 13 Maintainer: Miguel Luis and Gregory Cristian
ubhat 0:6cc76d70e2a1 14 */
ubhat 0:6cc76d70e2a1 15 #ifndef __BOARD_H__
ubhat 0:6cc76d70e2a1 16 #define __BOARD_H__
ubhat 0:6cc76d70e2a1 17
ubhat 0:6cc76d70e2a1 18 #include "Config.h"
ubhat 0:6cc76d70e2a1 19 #include "mbed.h"
ubhat 0:6cc76d70e2a1 20 #include "system/timer.h"
ubhat 0:6cc76d70e2a1 21 #include "debug.h"
ubhat 0:6cc76d70e2a1 22 #include "system/utilities.h"
ubhat 0:6cc76d70e2a1 23 #include "sx1272-hal.h"
ubhat 0:6cc76d70e2a1 24
ubhat 2:19dd7bfcacf7 25 #ifdef USE_GROVE_SENSOR
ubhat 2:19dd7bfcacf7 26 // Grove temperature-humidity sensor
ubhat 2:19dd7bfcacf7 27 #include "driver_mbed_TH02.h"
ubhat 2:19dd7bfcacf7 28 #endif
ubhat 2:19dd7bfcacf7 29
ubhat 0:6cc76d70e2a1 30 #ifdef USE_IKS01A1_SENSOR
ubhat 0:6cc76d70e2a1 31 #include "x_nucleo_iks01a1.h"
ubhat 0:6cc76d70e2a1 32 #endif
ubhat 0:6cc76d70e2a1 33
ubhat 0:6cc76d70e2a1 34 /*!
ubhat 0:6cc76d70e2a1 35 * Unique Devices IDs register set ( STM32L1xxx )
ubhat 0:6cc76d70e2a1 36 */
ubhat 0:6cc76d70e2a1 37 #define ID1 ( 0x1FF800D0 )
ubhat 0:6cc76d70e2a1 38 #define ID2 ( 0x1FF800D4 )
ubhat 0:6cc76d70e2a1 39 #define ID3 ( 0x1FF800E4 )
ubhat 0:6cc76d70e2a1 40
ubhat 0:6cc76d70e2a1 41 #define LOW_BAT_THRESHOLD 3.45
ubhat 0:6cc76d70e2a1 42 #define AIN_VREF 3.3 // STM32 internal refernce
ubhat 0:6cc76d70e2a1 43 #define AIN_VBAT_DIV 2 // Resistor divider
ubhat 0:6cc76d70e2a1 44
ubhat 0:6cc76d70e2a1 45 extern SX1272MB2xAS Radio;
ubhat 0:6cc76d70e2a1 46
ubhat 0:6cc76d70e2a1 47 extern DigitalIn UsrButton;
ubhat 0:6cc76d70e2a1 48
ubhat 1:428dbf097fe6 49 extern DigitalOut Led;
ubhat 0:6cc76d70e2a1 50
ubhat 0:6cc76d70e2a1 51 #ifdef USE_IKS01A1_SENSOR
ubhat 0:6cc76d70e2a1 52 extern X_NUCLEO_IKS01A1 *mems_expansion_board;
ubhat 0:6cc76d70e2a1 53 extern MotionSensor *accelerometer;
ubhat 0:6cc76d70e2a1 54 extern HumiditySensor *humidity_sensor;
ubhat 0:6cc76d70e2a1 55 extern PressureSensor *pressure_sensor;
ubhat 0:6cc76d70e2a1 56 extern TempSensor *temp_sensor1;
ubhat 0:6cc76d70e2a1 57 extern TempSensor *temp_sensor2;
ubhat 0:6cc76d70e2a1 58 #endif
ubhat 0:6cc76d70e2a1 59
ubhat 0:6cc76d70e2a1 60 /*!
ubhat 0:6cc76d70e2a1 61 * \brief Initializes the target board peripherals.
ubhat 0:6cc76d70e2a1 62 */
ubhat 0:6cc76d70e2a1 63 void BoardInit( void );
ubhat 0:6cc76d70e2a1 64
ubhat 0:6cc76d70e2a1 65 /*!
ubhat 0:6cc76d70e2a1 66 * \brief Measure the Battery level
ubhat 0:6cc76d70e2a1 67 *
ubhat 0:6cc76d70e2a1 68 * \retval value battery level ( 0: very low, 254: fully charged )
ubhat 0:6cc76d70e2a1 69 */
ubhat 0:6cc76d70e2a1 70 uint8_t BoardGetBatteryLevel( void );
ubhat 0:6cc76d70e2a1 71
ubhat 0:6cc76d70e2a1 72 /*!
ubhat 0:6cc76d70e2a1 73 * Returns a pseudo random seed generated using the MCU Unique ID
ubhat 0:6cc76d70e2a1 74 *
ubhat 0:6cc76d70e2a1 75 * \retval seed Generated pseudo random seed
ubhat 0:6cc76d70e2a1 76 */
ubhat 0:6cc76d70e2a1 77 uint32_t BoardGetRandomSeed( void );
ubhat 0:6cc76d70e2a1 78
ubhat 0:6cc76d70e2a1 79 /*!
ubhat 0:6cc76d70e2a1 80 * \brief Generates Lower 32 bits of DEVEUI using 96 bits unique device ID
ubhat 0:6cc76d70e2a1 81 *
ubhat 0:6cc76d70e2a1 82 * \param [IN] id Pointer to an array that will contain the Unique ID
ubhat 0:6cc76d70e2a1 83 */
ubhat 0:6cc76d70e2a1 84 void BoardGetDevEUI( uint8_t *id );
ubhat 0:6cc76d70e2a1 85
ubhat 0:6cc76d70e2a1 86 /*!
ubhat 0:6cc76d70e2a1 87 * \brief Gets the board 64 bits unique ID
ubhat 0:6cc76d70e2a1 88 *
ubhat 0:6cc76d70e2a1 89 * \param [IN] id Pointer to an array that will contain the Unique ID
ubhat 0:6cc76d70e2a1 90 */
ubhat 0:6cc76d70e2a1 91 void BoardGetUniqueId( uint8_t *id );
ubhat 0:6cc76d70e2a1 92
ubhat 0:6cc76d70e2a1 93 #endif // __BOARD_H__