LoRaWAN-SX1272-Application-24-31-9sec
Dependencies: X_NUCLEO_IKS01A1 driver_mbed_TH02 LoRaWAN-lib-v1_0_1 SX1272Lib mbed
Fork of LoRaWAN-SX1272-Application-24-31-9sec by
board/board.h@0:6cc76d70e2a1, 2017-04-06 (annotated)
- Committer:
- ubhat
- Date:
- Thu Apr 06 21:59:50 2017 +0000
- Revision:
- 0:6cc76d70e2a1
- Child:
- 1:428dbf097fe6
LoRaWAN SX1272 Application
Who changed what in which revision?
User | Revision | Line number | New 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 | 0:6cc76d70e2a1 | 25 | #ifdef USE_IKS01A1_SENSOR |
ubhat | 0:6cc76d70e2a1 | 26 | #include "x_nucleo_iks01a1.h" |
ubhat | 0:6cc76d70e2a1 | 27 | #endif |
ubhat | 0:6cc76d70e2a1 | 28 | |
ubhat | 0:6cc76d70e2a1 | 29 | /*! |
ubhat | 0:6cc76d70e2a1 | 30 | * Unique Devices IDs register set ( STM32L1xxx ) |
ubhat | 0:6cc76d70e2a1 | 31 | */ |
ubhat | 0:6cc76d70e2a1 | 32 | #define ID1 ( 0x1FF800D0 ) |
ubhat | 0:6cc76d70e2a1 | 33 | #define ID2 ( 0x1FF800D4 ) |
ubhat | 0:6cc76d70e2a1 | 34 | #define ID3 ( 0x1FF800E4 ) |
ubhat | 0:6cc76d70e2a1 | 35 | |
ubhat | 0:6cc76d70e2a1 | 36 | #define LOW_BAT_THRESHOLD 3.45 |
ubhat | 0:6cc76d70e2a1 | 37 | #define AIN_VREF 3.3 // STM32 internal refernce |
ubhat | 0:6cc76d70e2a1 | 38 | #define AIN_VBAT_DIV 2 // Resistor divider |
ubhat | 0:6cc76d70e2a1 | 39 | |
ubhat | 0:6cc76d70e2a1 | 40 | extern SX1272MB2xAS Radio; |
ubhat | 0:6cc76d70e2a1 | 41 | |
ubhat | 0:6cc76d70e2a1 | 42 | extern DigitalIn UsrButton; |
ubhat | 0:6cc76d70e2a1 | 43 | |
ubhat | 0:6cc76d70e2a1 | 44 | extern AnalogOut UsrLED; |
ubhat | 0:6cc76d70e2a1 | 45 | |
ubhat | 0:6cc76d70e2a1 | 46 | #ifdef USE_IKS01A1_SENSOR |
ubhat | 0:6cc76d70e2a1 | 47 | extern X_NUCLEO_IKS01A1 *mems_expansion_board; |
ubhat | 0:6cc76d70e2a1 | 48 | extern MotionSensor *accelerometer; |
ubhat | 0:6cc76d70e2a1 | 49 | extern HumiditySensor *humidity_sensor; |
ubhat | 0:6cc76d70e2a1 | 50 | extern PressureSensor *pressure_sensor; |
ubhat | 0:6cc76d70e2a1 | 51 | extern TempSensor *temp_sensor1; |
ubhat | 0:6cc76d70e2a1 | 52 | extern TempSensor *temp_sensor2; |
ubhat | 0:6cc76d70e2a1 | 53 | #endif |
ubhat | 0:6cc76d70e2a1 | 54 | |
ubhat | 0:6cc76d70e2a1 | 55 | /*! |
ubhat | 0:6cc76d70e2a1 | 56 | * \brief Initializes the target board peripherals. |
ubhat | 0:6cc76d70e2a1 | 57 | */ |
ubhat | 0:6cc76d70e2a1 | 58 | void BoardInit( void ); |
ubhat | 0:6cc76d70e2a1 | 59 | |
ubhat | 0:6cc76d70e2a1 | 60 | /*! |
ubhat | 0:6cc76d70e2a1 | 61 | * \brief Measure the Battery level |
ubhat | 0:6cc76d70e2a1 | 62 | * |
ubhat | 0:6cc76d70e2a1 | 63 | * \retval value battery level ( 0: very low, 254: fully charged ) |
ubhat | 0:6cc76d70e2a1 | 64 | */ |
ubhat | 0:6cc76d70e2a1 | 65 | uint8_t BoardGetBatteryLevel( void ); |
ubhat | 0:6cc76d70e2a1 | 66 | |
ubhat | 0:6cc76d70e2a1 | 67 | /*! |
ubhat | 0:6cc76d70e2a1 | 68 | * Returns a pseudo random seed generated using the MCU Unique ID |
ubhat | 0:6cc76d70e2a1 | 69 | * |
ubhat | 0:6cc76d70e2a1 | 70 | * \retval seed Generated pseudo random seed |
ubhat | 0:6cc76d70e2a1 | 71 | */ |
ubhat | 0:6cc76d70e2a1 | 72 | uint32_t BoardGetRandomSeed( void ); |
ubhat | 0:6cc76d70e2a1 | 73 | |
ubhat | 0:6cc76d70e2a1 | 74 | /*! |
ubhat | 0:6cc76d70e2a1 | 75 | * \brief Generates Lower 32 bits of DEVEUI using 96 bits unique device ID |
ubhat | 0:6cc76d70e2a1 | 76 | * |
ubhat | 0:6cc76d70e2a1 | 77 | * \param [IN] id Pointer to an array that will contain the Unique ID |
ubhat | 0:6cc76d70e2a1 | 78 | */ |
ubhat | 0:6cc76d70e2a1 | 79 | void BoardGetDevEUI( uint8_t *id ); |
ubhat | 0:6cc76d70e2a1 | 80 | |
ubhat | 0:6cc76d70e2a1 | 81 | /*! |
ubhat | 0:6cc76d70e2a1 | 82 | * \brief Gets the board 64 bits unique ID |
ubhat | 0:6cc76d70e2a1 | 83 | * |
ubhat | 0:6cc76d70e2a1 | 84 | * \param [IN] id Pointer to an array that will contain the Unique ID |
ubhat | 0:6cc76d70e2a1 | 85 | */ |
ubhat | 0:6cc76d70e2a1 | 86 | void BoardGetUniqueId( uint8_t *id ); |
ubhat | 0:6cc76d70e2a1 | 87 | |
ubhat | 0:6cc76d70e2a1 | 88 | #endif // __BOARD_H__ |