BLE Transmitter not working

Fork of Dealer_23Feb by kumar singh

Committer:
NarendraSingh
Date:
Wed Feb 22 14:59:59 2017 +0000
Revision:
21:a5fb0ae94dc6
Parent:
19:886d50ecc718
Child:
24:1063cfc311e5
echo printing

Who changed what in which revision?

UserRevisionLine numberNew contents of line
NarendraSingh 11:77e595130230 1 #include "mbed.h"
NarendraSingh 11:77e595130230 2 #include "Common_Defs.h"
NarendraSingh 11:77e595130230 3
NarendraSingh 11:77e595130230 4 // mDOT AT COMMANDS DEFINITIONS
NarendraSingh 11:77e595130230 5 #define ENABLED 1
NarendraSingh 11:77e595130230 6 #define Disabled 0
NarendraSingh 11:77e595130230 7 #define NWK_PARA_HEX 0
NarendraSingh 11:77e595130230 8 #define NWK_PARA_STRING 1
NarendraSingh 11:77e595130230 9 #define LORA_UART_RX_Size 2000//Buffer for receiving Lora responses
NarendraSingh 11:77e595130230 10
NarendraSingh 11:77e595130230 11 #define LORA_PACKET_HEADER 0xFE //Lora Header,SOF,Every packet sent starts with 0xFE
NarendraSingh 11:77e595130230 12
NarendraSingh 11:77e595130230 13 #define HEART_BEAT_PACKET_CMD 0x01 //MSB,HeartBeat Identification Packet
NarendraSingh 11:77e595130230 14 #define CHECKIN_PACKET_CMD 0x02 //MSB,CheckIn Identification Packet
NarendraSingh 21:a5fb0ae94dc6 15 #define CHECKOUT_PACKET_CMD 0x03 //MSB,CheckIn Identification Packet
NarendraSingh 21:a5fb0ae94dc6 16 #define MOTION_PACKET_CMD 0x04 //MSB,Motion Identification Packet
NarendraSingh 21:a5fb0ae94dc6 17 #define LOW_BATTERY_PACKET_CMD 0x05 //MSB,Low Battery Identification Packet
NarendraSingh 21:a5fb0ae94dc6 18 #define STATUS_PACKET_CMD 0x06 //MSB,Status Packet
NarendraSingh 21:a5fb0ae94dc6 19 #define NEW_DEV_PACKET_CMD 0x07 //MSB,New Device Identification Packet
NarendraSingh 11:77e595130230 20
NarendraSingh 11:77e595130230 21
NarendraSingh 11:77e595130230 22 //Lora Frequency SubBand
NarendraSingh 11:77e595130230 23 #define FREQUENCY_SUB_BAND_CHANNEL0 0
NarendraSingh 11:77e595130230 24 #define FREQUENCY_SUB_BAND_CHANNEL1 1
NarendraSingh 11:77e595130230 25 #define FREQUENCY_SUB_BAND_CHANNEL2 2
NarendraSingh 11:77e595130230 26 #define FREQUENCY_SUB_BAND_CHANNEL3 3
NarendraSingh 11:77e595130230 27 #define FREQUENCY_SUB_BAND_CHANNEL4 4
NarendraSingh 11:77e595130230 28 #define FREQUENCY_SUB_BAND_CHANNEL5 5
NarendraSingh 11:77e595130230 29 #define FREQUENCY_SUB_BAND_CHANNEL6 6
NarendraSingh 11:77e595130230 30 #define FREQUENCY_SUB_BAND_CHANNEL7 7
NarendraSingh 11:77e595130230 31 #define FREQUENCY_SUB_BAND_CHANNEL8 8
NarendraSingh 11:77e595130230 32
NarendraSingh 11:77e595130230 33 #define HEX_PARAMETER 0
NarendraSingh 11:77e595130230 34 #define STRING_PARAMETER 1
NarendraSingh 11:77e595130230 35
NarendraSingh 11:77e595130230 36 //Network Join Status
NarendraSingh 11:77e595130230 37 #define NETWORK_STATUS_JOINED 1
NarendraSingh 11:77e595130230 38 #define NETWORK_STATUS_NOT_JOINED 0
NarendraSingh 11:77e595130230 39
NarendraSingh 11:77e595130230 40 //Netwrork Join Retries Definitions
NarendraSingh 11:77e595130230 41 #define NETWORK_JOIN_RETRIES_Disable 0
NarendraSingh 11:77e595130230 42 #define NETWORK_JOIN_RETRIES_1 1
NarendraSingh 11:77e595130230 43 #define NETWORK_JOIN_RETRIES_2 2
NarendraSingh 11:77e595130230 44 #define NETWORK_JOIN_RETRIES_3 3
NarendraSingh 11:77e595130230 45 #define NETWORK_JOIN_RETRIES_4 4
NarendraSingh 11:77e595130230 46
NarendraSingh 11:77e595130230 47 #define HEARTBEAT_TYPE_PACKET 0x01
NarendraSingh 11:77e595130230 48 #define MOTION_TYPE_PACKET 0x02
NarendraSingh 11:77e595130230 49 #define CHECKIN_TYPE_PACKET 0x03
NarendraSingh 12:6107b32b0729 50 #define STATUS_TYPE_PACKET 0x04
NarendraSingh 12:6107b32b0729 51
NarendraSingh 11:77e595130230 52
NarendraSingh 11:77e595130230 53 extern uint8 Packet_Type_To_Send; //By Default Heart Beat PAckets should be sent
NarendraSingh 11:77e595130230 54
NarendraSingh 11:77e595130230 55
NarendraSingh 16:7703b9d92326 56 struct Fixed_Beacon
NarendraSingh 16:7703b9d92326 57 {
NarendraSingh 16:7703b9d92326 58 uint8 Parking1_Beacon_ID[6];
NarendraSingh 16:7703b9d92326 59 uint8 Parking1_Beacon_Signal_Strength;
NarendraSingh 16:7703b9d92326 60 uint8 Parking2_Beacon_ID[6];
NarendraSingh 16:7703b9d92326 61 uint8 Parking2_Beacon_Signal_Strength;
NarendraSingh 16:7703b9d92326 62 uint8 Parking3_Beacon_ID[6];
NarendraSingh 16:7703b9d92326 63 uint8 Parking3_Beacon_Signal_Strength;
NarendraSingh 16:7703b9d92326 64 };
NarendraSingh 16:7703b9d92326 65
NarendraSingh 16:7703b9d92326 66 struct Near_Car_Beacon
NarendraSingh 16:7703b9d92326 67 {
NarendraSingh 16:7703b9d92326 68 uint8 Near_Car1_Beacon_ID[6];
NarendraSingh 16:7703b9d92326 69 uint8 Near_Car1_Beacon_Signal_Strength;
NarendraSingh 16:7703b9d92326 70 uint8 Near_Car2_Beacon_ID[6];
NarendraSingh 16:7703b9d92326 71 uint8 Near_Car2_Beacon_Signal_Strength;
NarendraSingh 16:7703b9d92326 72 uint8 Near_Car3_Beacon_ID[6];
NarendraSingh 16:7703b9d92326 73 uint8 Near_Car3_Beacon_Signal_Strength;
NarendraSingh 16:7703b9d92326 74 };
NarendraSingh 16:7703b9d92326 75
NarendraSingh 19:886d50ecc718 76 struct Misc_Packets
NarendraSingh 19:886d50ecc718 77 {
NarendraSingh 21:a5fb0ae94dc6 78 uint8 Header;
NarendraSingh 19:886d50ecc718 79 uint8 Protocol_Version;
NarendraSingh 19:886d50ecc718 80 uint16 OBD_Battery_Voltage;
NarendraSingh 19:886d50ecc718 81 uint16 Car_Battery_Voltage;
NarendraSingh 19:886d50ecc718 82 uint8 OBD_Battery_Temperature;
NarendraSingh 19:886d50ecc718 83 uint8 Car_Ambient_Temperature;
NarendraSingh 21:a5fb0ae94dc6 84 uint8 VIN[17]; //Vehicle Identification Number
NarendraSingh 19:886d50ecc718 85 uint8 ODO_METER_READING[3];
NarendraSingh 19:886d50ecc718 86 };
NarendraSingh 19:886d50ecc718 87
NarendraSingh 11:77e595130230 88 struct Heart_Beat_PacketType
NarendraSingh 11:77e595130230 89 {
NarendraSingh 19:886d50ecc718 90 Misc_Packets Misc_Packet_Data;
NarendraSingh 11:77e595130230 91 uint8 Packet_Type;
NarendraSingh 16:7703b9d92326 92 Fixed_Beacon Fixed_Beacon_Packet;
NarendraSingh 21:a5fb0ae94dc6 93 uint8 Sequence_No;
NarendraSingh 11:77e595130230 94 uint8 FCS;
NarendraSingh 11:77e595130230 95 };
NarendraSingh 11:77e595130230 96
NarendraSingh 11:77e595130230 97 struct Vehicle_Status_PacketType
NarendraSingh 11:77e595130230 98 {
NarendraSingh 19:886d50ecc718 99 Misc_Packets Misc_Packet_Data;
NarendraSingh 11:77e595130230 100 uint8 Packet_Type;
NarendraSingh 11:77e595130230 101 uint16 Fuel_Level;
NarendraSingh 11:77e595130230 102 uint8 BLE_Adv_Beacon_ID[6];
NarendraSingh 16:7703b9d92326 103 Fixed_Beacon Fixed_Beacon_Packet;
NarendraSingh 16:7703b9d92326 104 Near_Car_Beacon Near_Car_Beacon_Packet;
NarendraSingh 21:a5fb0ae94dc6 105 uint8 Sequence_No;
NarendraSingh 11:77e595130230 106 uint8 FCS;
NarendraSingh 11:77e595130230 107 };
NarendraSingh 11:77e595130230 108
NarendraSingh 11:77e595130230 109 struct CheckIN_PacketType
NarendraSingh 11:77e595130230 110 {
NarendraSingh 19:886d50ecc718 111 Misc_Packets Misc_Packet_Data;
NarendraSingh 11:77e595130230 112 uint8 Packet_Type;
NarendraSingh 21:a5fb0ae94dc6 113 uint8 DTC[5]; //Diagnostic trouble code
NarendraSingh 16:7703b9d92326 114 Fixed_Beacon Fixed_Beacon_Packet;
NarendraSingh 21:a5fb0ae94dc6 115 uint8 Sequence_No;
NarendraSingh 11:77e595130230 116 uint8 FCS;
NarendraSingh 11:77e595130230 117 };
NarendraSingh 11:77e595130230 118
NarendraSingh 18:86f069689502 119 struct CheckOUT_PacketType
NarendraSingh 18:86f069689502 120 {
NarendraSingh 19:886d50ecc718 121 Misc_Packets Misc_Packet_Data;
NarendraSingh 18:86f069689502 122 uint8 Packet_Type;
NarendraSingh 21:a5fb0ae94dc6 123 uint8 Sequence_No;
NarendraSingh 18:86f069689502 124 uint8 FCS;
NarendraSingh 18:86f069689502 125 };
NarendraSingh 18:86f069689502 126
NarendraSingh 11:77e595130230 127 struct Motion_PacketType
NarendraSingh 11:77e595130230 128 {
NarendraSingh 19:886d50ecc718 129 Misc_Packets Misc_Packet_Data;
NarendraSingh 11:77e595130230 130 uint8 Packet_Type;
NarendraSingh 16:7703b9d92326 131 Fixed_Beacon Fixed_Beacon_Packet;
NarendraSingh 16:7703b9d92326 132 Near_Car_Beacon Near_Car_Beacon_Packet;
NarendraSingh 11:77e595130230 133 uint8 Acceleration_Type;
NarendraSingh 21:a5fb0ae94dc6 134 uint8 Sequence_No;
NarendraSingh 11:77e595130230 135 uint8 FCS;
NarendraSingh 11:77e595130230 136 };
NarendraSingh 11:77e595130230 137
NarendraSingh 16:7703b9d92326 138
NarendraSingh 11:77e595130230 139 extern uint8 Send_Lora_Packet_Flag;
NarendraSingh 11:77e595130230 140 extern int Lora_RxBuffer_Crnt_Pos,Lora_RxBuffer_End_Pos; // must be volatile or the compiler may over-optimise.
NarendraSingh 11:77e595130230 141 extern int receivedDataCount;
NarendraSingh 11:77e595130230 142 extern char LORA_UART_RX_Buffer[LORA_UART_RX_Size];
NarendraSingh 11:77e595130230 143 extern int LORA_UART_RX_Crnt_Pos;
NarendraSingh 11:77e595130230 144 extern uint8 Lora_Command_Rcvd[100];
NarendraSingh 11:77e595130230 145 extern uint8 Lora_Cmd_Length;
NarendraSingh 11:77e595130230 146 extern uint8 AT_Response_Receive_Status;
NarendraSingh 11:77e595130230 147 extern uint8 Vehicle_Identification_Number[17]; //Unique Vehicle_Identification_Number, Read using OBD
NarendraSingh 11:77e595130230 148 extern uint8 Motion_Packet_Sent_Count;
NarendraSingh 11:77e595130230 149 extern uint8 CheckIN_Packet_Sent_Count;
NarendraSingh 11:77e595130230 150 extern uint8 Lora_Packet_To_Send[100];
NarendraSingh 11:77e595130230 151
NarendraSingh 11:77e595130230 152 extern uint8 OBD_Protocol_Version;
NarendraSingh 11:77e595130230 153 extern Heart_Beat_PacketType Heart_Beat_Lora_Packet; //Allocate Memory for HeartBeat Lora Packets
NarendraSingh 11:77e595130230 154 extern CheckIN_PacketType CheckIN_Lora_Packet; //Allocate Memory for CheckIN Lora Packets
NarendraSingh 11:77e595130230 155 extern Motion_PacketType Motion_Lora_Packet; //Allocate Memory for Movement Lora Packets
NarendraSingh 11:77e595130230 156 extern Vehicle_Status_PacketType Vehicle_Status_Lora_Packet; //Allocate Memory for Movement Lora Packets
NarendraSingh 16:7703b9d92326 157 extern Near_Car_Beacon Near_Car_Packet;
NarendraSingh 16:7703b9d92326 158 extern Fixed_Beacon Fixed_Beacon_Packet;
NarendraSingh 18:86f069689502 159 extern CheckOUT_PacketType CheckOUT_Packet;
NarendraSingh 19:886d50ecc718 160 extern Misc_Packets Misc_Packet_Data;
NarendraSingh 19:886d50ecc718 161
NarendraSingh 11:77e595130230 162 void Send_Lora_Packet_To_Gateway(uint8* Command_To_Send,uint8 Length);
NarendraSingh 11:77e595130230 163 extern void Flip_Lora_Packet_Sending();
NarendraSingh 11:77e595130230 164 extern void Lora_Periodic_Packet_Sending_thread(void const *arg);
NarendraSingh 11:77e595130230 165 void Initialize_lora_Packets();
NarendraSingh 11:77e595130230 166 static void Process_Received_Response(uint8 Response_Length);
NarendraSingh 11:77e595130230 167 void Read_Lora_END_Node_ID(uint8* Buffer,uint8 Start_Position,uint8 Response_Length);
NarendraSingh 11:77e595130230 168 //extern void Lora_Rcvd_Cmd_Processing_thread(void const *args);
NarendraSingh 11:77e595130230 169 void Get_Acceleration_Type(void);
NarendraSingh 11:77e595130230 170 void Send_Motion_Packet(void);
NarendraSingh 11:77e595130230 171 void Send_CheckIN_Packet(void);
NarendraSingh 19:886d50ecc718 172 void Send_CheckOUT_Packet(void);
NarendraSingh 11:77e595130230 173 void Send_HeartBeat_Packet(void);
NarendraSingh 13:8955f2e95021 174 void Send_Vehicle_Status_Packet(void);
NarendraSingh 11:77e595130230 175 extern uint8 Calculate_Lora_Frame_FCS(uint8* Packet_Data,uint8 Packet_Length);
NarendraSingh 11:77e595130230 176 extern void Set_Up_Lora_Network_Configuration(void);
NarendraSingh 13:8955f2e95021 177 extern void Get_Lora_Response(void);