LR Initial Publish

Dependencies:   X_NUCLEO_IKS01A2 driver_mbed_TH02 mbed LoRaWAN-lib-v1_0_1 SX1272Lib

Fork of Training-Aug2018-SX1272-X-NUCLEO-IKS01A2 by Uttam Bhat

Committer:
bootcamps
Date:
Sat Oct 06 01:43:37 2018 +0000
Revision:
12:5222f008392b
Parent:
10:bba416e2c3e1
Update LR

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 #include "mbed.h"
ubhat 0:6cc76d70e2a1 16 #include "board.h"
ubhat 0:6cc76d70e2a1 17
ubhat 2:19dd7bfcacf7 18 DigitalIn I2cInterrupt( D5 );
ubhat 0:6cc76d70e2a1 19 I2C I2c(I2C_SDA, I2C_SCL);
ubhat 0:6cc76d70e2a1 20
ubhat 2:19dd7bfcacf7 21 DigitalOut Pc7( D9 );
ubhat 2:19dd7bfcacf7 22 DigitalIn Pc1( A4 );
ubhat 0:6cc76d70e2a1 23
ubhat 2:19dd7bfcacf7 24 //DigitalIn UsrButton( PC_13 );
ubhat 2:19dd7bfcacf7 25 DigitalIn UsrButton( D10 );
ubhat 0:6cc76d70e2a1 26
ubhat 2:19dd7bfcacf7 27 DigitalOut Led( D6 );
ubhat 1:428dbf097fe6 28
ubhat 10:bba416e2c3e1 29 /* Instantiate the expansion board */
ubhat 10:bba416e2c3e1 30 XNucleoIKS01A2 *mems_expansion_board = XNucleoIKS01A2::instance(D14, D15, NC, NC);
ubhat 10:bba416e2c3e1 31
ubhat 10:bba416e2c3e1 32 /* Retrieve the composing elements of the expansion board */
ubhat 10:bba416e2c3e1 33 LSM303AGRMagSensor *magnetometer = mems_expansion_board->magnetometer;
ubhat 10:bba416e2c3e1 34 HTS221Sensor *hum_temp = mems_expansion_board->ht_sensor;
ubhat 10:bba416e2c3e1 35 LPS22HBSensor *press_temp = mems_expansion_board->pt_sensor;
ubhat 10:bba416e2c3e1 36 LSM6DSLSensor *acc_gyro = mems_expansion_board->acc_gyro;
ubhat 10:bba416e2c3e1 37 LSM303AGRAccSensor *accelerometer = mems_expansion_board->accelerometer;
ubhat 0:6cc76d70e2a1 38
ubhat 0:6cc76d70e2a1 39 SX1272MB2xAS Radio( NULL );
ubhat 0:6cc76d70e2a1 40
ubhat 0:6cc76d70e2a1 41 void BoardInit( void )
ubhat 0:6cc76d70e2a1 42 {
ubhat 10:bba416e2c3e1 43
ubhat 10:bba416e2c3e1 44 /* Enable all sensors */
ubhat 10:bba416e2c3e1 45 hum_temp->enable();
ubhat 10:bba416e2c3e1 46 press_temp->enable();
ubhat 10:bba416e2c3e1 47 magnetometer->enable();
ubhat 10:bba416e2c3e1 48 accelerometer->enable();
ubhat 10:bba416e2c3e1 49 acc_gyro->enable_x();
ubhat 10:bba416e2c3e1 50 acc_gyro->enable_g();
ubhat 10:bba416e2c3e1 51
ubhat 0:6cc76d70e2a1 52 TimerTimeCounterInit( );
ubhat 0:6cc76d70e2a1 53 }
ubhat 0:6cc76d70e2a1 54
ubhat 0:6cc76d70e2a1 55 uint8_t BoardGetBatteryLevel( void )
ubhat 0:6cc76d70e2a1 56 {
ubhat 0:6cc76d70e2a1 57 return 0xFE;
ubhat 0:6cc76d70e2a1 58 }
ubhat 0:6cc76d70e2a1 59
ubhat 0:6cc76d70e2a1 60 uint32_t BoardGetRandomSeed( void )
ubhat 0:6cc76d70e2a1 61 {
ubhat 0:6cc76d70e2a1 62 return ( ( *( uint32_t* )ID1 ) ^ ( *( uint32_t* )ID2 ) ^ ( *( uint32_t* )ID3 ) );
ubhat 0:6cc76d70e2a1 63 }
ubhat 0:6cc76d70e2a1 64
ubhat 0:6cc76d70e2a1 65 void BoardGetDevEUI( uint8_t *id )
ubhat 0:6cc76d70e2a1 66 {
ubhat 8:7ddaacb6dda6 67 uint32_t DevEuiHWord = 0;
ubhat 0:6cc76d70e2a1 68
ubhat 8:7ddaacb6dda6 69 if( ( id[7] == 0 ) && ( id[6] == 0 ) && ( id[5] == 0 ) && ( id[4] == 0 ) )
ubhat 0:6cc76d70e2a1 70 {
ubhat 8:7ddaacb6dda6 71 DevEuiHWord = BoardGetRandomSeed( );
ubhat 8:7ddaacb6dda6 72 id[7] = (DevEuiHWord >> 3) & 0xFF;
ubhat 8:7ddaacb6dda6 73 id[6] = (DevEuiHWord >> 2) & 0xFF;
ubhat 8:7ddaacb6dda6 74 id[5] = (DevEuiHWord >> 1) & 0xFF;
ubhat 8:7ddaacb6dda6 75 id[4] = (DevEuiHWord >> 0) & 0xFF;
ubhat 8:7ddaacb6dda6 76 }
ubhat 0:6cc76d70e2a1 77 }
ubhat 0:6cc76d70e2a1 78
ubhat 0:6cc76d70e2a1 79 void BoardGetUniqueId( uint8_t *id )
ubhat 0:6cc76d70e2a1 80 {
ubhat 0:6cc76d70e2a1 81 id[7] = ( ( *( uint32_t* )ID1 )+ ( *( uint32_t* )ID3 ) ) >> 24;
ubhat 0:6cc76d70e2a1 82 id[6] = ( ( *( uint32_t* )ID1 )+ ( *( uint32_t* )ID3 ) ) >> 16;
ubhat 0:6cc76d70e2a1 83 id[5] = ( ( *( uint32_t* )ID1 )+ ( *( uint32_t* )ID3 ) ) >> 8;
ubhat 0:6cc76d70e2a1 84 id[4] = ( ( *( uint32_t* )ID1 )+ ( *( uint32_t* )ID3 ) );
ubhat 0:6cc76d70e2a1 85 id[3] = ( ( *( uint32_t* )ID2 ) ) >> 24;
ubhat 0:6cc76d70e2a1 86 id[2] = ( ( *( uint32_t* )ID2 ) ) >> 16;
ubhat 0:6cc76d70e2a1 87 id[1] = ( ( *( uint32_t* )ID2 ) ) >> 8;
ubhat 0:6cc76d70e2a1 88 id[0] = ( ( *( uint32_t* )ID2 ) );
ubhat 0:6cc76d70e2a1 89 }
ubhat 0:6cc76d70e2a1 90