A libery to connect to telegesis zigbee module. Bassed on implemtation of XBEE
Fork of xbee_lib by
telegesis.h@30:f9cdb6f62586, 2014-11-28 (annotated)
- Committer:
- gert_lauritsen
- Date:
- Fri Nov 28 09:28:26 2014 +0000
- Revision:
- 30:f9cdb6f62586
- Parent:
- 29:6711180763b6
- Child:
- 31:c59bc92a047e
Added Join spec pan
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
gert_lauritsen | 11:18ff088287ea | 1 | #ifndef telegesis_h |
gert_lauritsen | 11:18ff088287ea | 2 | #define telegesis_h |
gert_lauritsen | 11:18ff088287ea | 3 | |
tristanjph | 0:2656fb225c5d | 4 | #include "mbed.h" |
gert_lauritsen | 29:6711180763b6 | 5 | #include <RawSerial.h> |
tristanjph | 0:2656fb225c5d | 6 | |
gert_lauritsen | 13:1b557befdeff | 7 | /**Eksemple |
gert_lauritsen | 13:1b557befdeff | 8 | #include "telegesis.h" |
gert_lauritsen | 13:1b557befdeff | 9 | zigbee ZB(p9,p10); |
gert_lauritsen | 13:1b557befdeff | 10 | |
gert_lauritsen | 13:1b557befdeff | 11 | int main() { |
gert_lauritsen | 13:1b557befdeff | 12 | ZB.Reset(); |
gert_lauritsen | 13:1b557befdeff | 13 | wait(1); |
gert_lauritsen | 13:1b557befdeff | 14 | ZB.GetSerial(); |
gert_lauritsen | 13:1b557befdeff | 15 | while(1) { |
gert_lauritsen | 13:1b557befdeff | 16 | ZB.GetSerial(); |
gert_lauritsen | 13:1b557befdeff | 17 | ZB.RecieveData(read_data,0); |
gert_lauritsen | 13:1b557befdeff | 18 | ZB.UniCast("0000","tester forbindelse"); |
gert_lauritsen | 13:1b557befdeff | 19 | if (ZB.Zdat) { |
gert_lauritsen | 13:1b557befdeff | 20 | ZB.Zdat=0; |
gert_lauritsen | 13:1b557befdeff | 21 | printf(ZB.Zdata); |
gert_lauritsen | 13:1b557befdeff | 22 | } |
gert_lauritsen | 13:1b557befdeff | 23 | } |
gert_lauritsen | 13:1b557befdeff | 24 | } |
gert_lauritsen | 13:1b557befdeff | 25 | |
gert_lauritsen | 13:1b557befdeff | 26 | */ |
gert_lauritsen | 7:45511c3d2950 | 27 | /** Zigbee interface class for configuring, sending and recieving data using an telegesis zigbee */ |
gert_lauritsen | 11:18ff088287ea | 28 | #define START_BYTE 0x7e |
gert_lauritsen | 11:18ff088287ea | 29 | #define ESCAPE 0x7d |
gert_lauritsen | 26:2a85af491d92 | 30 | #define MAX_FRAME_DATA_SIZE 90 |
gert_lauritsen | 29:6711180763b6 | 31 | #define ZdataSize 80 |
gert_lauritsen | 29:6711180763b6 | 32 | typedef struct { |
gert_lauritsen | 29:6711180763b6 | 33 | char Ready; |
gert_lauritsen | 29:6711180763b6 | 34 | char ID[17]; |
gert_lauritsen | 29:6711180763b6 | 35 | char Data[ZdataSize]; |
gert_lauritsen | 29:6711180763b6 | 36 | }ZdatRec; |
gert_lauritsen | 11:18ff088287ea | 37 | |
gert_lauritsen | 7:45511c3d2950 | 38 | class zigbee |
tristanjph | 2:cb627ea9b817 | 39 | { |
tristanjph | 0:2656fb225c5d | 40 | private: |
tristanjph | 0:2656fb225c5d | 41 | PinName _tx; |
tristanjph | 0:2656fb225c5d | 42 | PinName _rx; |
tristanjph | 3:682615a0717e | 43 | PinName _reset; |
gert_lauritsen | 23:8a7329b46e95 | 44 | |
tristanjph | 0:2656fb225c5d | 45 | public: |
gert_lauritsen | 7:45511c3d2950 | 46 | |
gert_lauritsen | 11:18ff088287ea | 47 | zigbee(PinName tx, PinName rx); |
gert_lauritsen | 7:45511c3d2950 | 48 | ~zigbee(); |
gert_lauritsen | 7:45511c3d2950 | 49 | |
gert_lauritsen | 7:45511c3d2950 | 50 | |
gert_lauritsen | 7:45511c3d2950 | 51 | /** Gets the serial number/mac address of the zigbee and places it into serial_no. |
gert_lauritsen | 7:45511c3d2950 | 52 | * @param serial_no array to store the serial of zigbee (must be 8 long). |
tristanjph | 2:cb627ea9b817 | 53 | * @return Returns 1 on success. |
tristanjph | 2:cb627ea9b817 | 54 | */ |
gert_lauritsen | 11:18ff088287ea | 55 | int GetSerial(); |
tristanjph | 6:6455a079bdb3 | 56 | /** Sets the encryption key. This should be a 128-bit key. |
tristanjph | 2:cb627ea9b817 | 57 | * @param key Pointer to the network key to set. |
tristanjph | 2:cb627ea9b817 | 58 | * @return Returns 1 on success. |
tristanjph | 1:c3d9bdcb0b03 | 59 | */ |
tristanjph | 5:714651141a83 | 60 | int SetKey(char*); |
gert_lauritsen | 7:45511c3d2950 | 61 | |
tristanjph | 2:cb627ea9b817 | 62 | /** Recieves data sent to the xbee. |
tristanjph | 2:cb627ea9b817 | 63 | * @param data_buf Pointer to the buffer to put recieved data into. |
tristanjph | 2:cb627ea9b817 | 64 | * @param numchar Number of characters to read. If 0, will use the size of data_buf. |
tristanjph | 2:cb627ea9b817 | 65 | */ |
tristanjph | 2:cb627ea9b817 | 66 | void RecieveData(char*, int); |
gert_lauritsen | 10:263f7251c111 | 67 | /** Get hw version and local ID (64bit uniq number) |
gert_lauritsen | 10:263f7251c111 | 68 | * |
gert_lauritsen | 10:263f7251c111 | 69 | */ |
gert_lauritsen | 7:45511c3d2950 | 70 | int ATI(); |
gert_lauritsen | 10:263f7251c111 | 71 | /** Sends a ping to Coo or any other adresse |
gert_lauritsen | 8:4682155753ec | 72 | * |
gert_lauritsen | 7:45511c3d2950 | 73 | */ |
gert_lauritsen | 7:45511c3d2950 | 74 | int PingOut(); |
gert_lauritsen | 10:263f7251c111 | 75 | /** Scan the Pan for nodes |
gert_lauritsen | 7:45511c3d2950 | 76 | */ |
gert_lauritsen | 7:45511c3d2950 | 77 | int PanScan(); |
gert_lauritsen | 10:263f7251c111 | 78 | /** Make a new network. It then gets the role as coordinator |
gert_lauritsen | 7:45511c3d2950 | 79 | */ |
gert_lauritsen | 7:45511c3d2950 | 80 | int Establish_Network(); |
gert_lauritsen | 10:263f7251c111 | 81 | /** Join a pan |
gert_lauritsen | 7:45511c3d2950 | 82 | */ |
gert_lauritsen | 7:45511c3d2950 | 83 | int JoinNetwork(); |
gert_lauritsen | 20:070dc2050052 | 84 | /** Leave a Pan |
gert_lauritsen | 20:070dc2050052 | 85 | */ |
gert_lauritsen | 20:070dc2050052 | 86 | int LeaveNetwork(); |
gert_lauritsen | 10:263f7251c111 | 87 | /** |
gert_lauritsen | 10:263f7251c111 | 88 | * Scan network |
gert_lauritsen | 7:45511c3d2950 | 89 | */ |
gert_lauritsen | 7:45511c3d2950 | 90 | int ScanNetwork(); |
gert_lauritsen | 10:263f7251c111 | 91 | /** |
gert_lauritsen | 10:263f7251c111 | 92 | *Give info on what role the modem has in the network |
gert_lauritsen | 7:45511c3d2950 | 93 | */ |
gert_lauritsen | 10:263f7251c111 | 94 | |
gert_lauritsen | 7:45511c3d2950 | 95 | int NetworkInfo(); |
gert_lauritsen | 10:263f7251c111 | 96 | /** |
gert_lauritsen | 7:45511c3d2950 | 97 | */ |
gert_lauritsen | 12:debf76f0c0bf | 98 | int Reset(); |
gert_lauritsen | 8:4682155753ec | 99 | /** Sends data using the ascii mode |
gert_lauritsen | 10:263f7251c111 | 100 | */ |
gert_lauritsen | 9:c8e4339ccc29 | 101 | int UniCast(char *adr,char *payload); |
gert_lauritsen | 8:4682155753ec | 102 | /** Sends data using the binary mode |
gert_lauritsen | 8:4682155753ec | 103 | */ |
gert_lauritsen | 9:c8e4339ccc29 | 104 | int UniCastb(char *adr,char *payload, char payloadSize); |
gert_lauritsen | 11:18ff088287ea | 105 | |
gert_lauritsen | 10:263f7251c111 | 106 | |
gert_lauritsen | 9:c8e4339ccc29 | 107 | /** converts a string to a long |
gert_lauritsen | 9:c8e4339ccc29 | 108 | */ |
gert_lauritsen | 11:18ff088287ea | 109 | unsigned long hextolong(const char *hex); |
gert_lauritsen | 8:4682155753ec | 110 | /** convertes a string to a int |
gert_lauritsen | 8:4682155753ec | 111 | */ |
gert_lauritsen | 11:18ff088287ea | 112 | unsigned int hextoint(const char *hex); |
gert_lauritsen | 9:c8e4339ccc29 | 113 | /** |
gert_lauritsen | 9:c8e4339ccc29 | 114 | */ |
gert_lauritsen | 7:45511c3d2950 | 115 | int EUI64; |
gert_lauritsen | 9:c8e4339ccc29 | 116 | /** COO or FBB |
gert_lauritsen | 9:c8e4339ccc29 | 117 | */ |
gert_lauritsen | 20:070dc2050052 | 118 | char Devicetype[4]; |
gert_lauritsen | 9:c8e4339ccc29 | 119 | /** Gives type of HW |
gert_lauritsen | 9:c8e4339ccc29 | 120 | */ |
gert_lauritsen | 30:f9cdb6f62586 | 121 | char PanNumber[5]; |
gert_lauritsen | 30:f9cdb6f62586 | 122 | /** Gives number on current PAN of HW |
gert_lauritsen | 30:f9cdb6f62586 | 123 | */ |
gert_lauritsen | 30:f9cdb6f62586 | 124 | int PanChan; |
gert_lauritsen | 30:f9cdb6f62586 | 125 | /* channel nummer on pan |
gert_lauritsen | 30:f9cdb6f62586 | 126 | */ |
gert_lauritsen | 30:f9cdb6f62586 | 127 | int PansNear[5]; |
gert_lauritsen | 30:f9cdb6f62586 | 128 | /* Gives pannumber af those near |
gert_lauritsen | 30:f9cdb6f62586 | 129 | */ |
gert_lauritsen | 9:c8e4339ccc29 | 130 | char HWType[15]; |
gert_lauritsen | 9:c8e4339ccc29 | 131 | /** incomming data |
gert_lauritsen | 9:c8e4339ccc29 | 132 | */ |
gert_lauritsen | 29:6711180763b6 | 133 | ZdatRec In; |
gert_lauritsen | 29:6711180763b6 | 134 | //char Zdata[ZdataSize]; |
gert_lauritsen | 11:18ff088287ea | 135 | /** |
gert_lauritsen | 29:6711180763b6 | 136 | |
gert_lauritsen | 11:18ff088287ea | 137 | */ |
gert_lauritsen | 29:6711180763b6 | 138 | void SletZdata(void); |
gert_lauritsen | 18:10fcddf238c9 | 139 | char LocalID[17]; |
gert_lauritsen | 11:18ff088287ea | 140 | /** |
gert_lauritsen | 11:18ff088287ea | 141 | * indication of incoming data |
gert_lauritsen | 11:18ff088287ea | 142 | */ |
gert_lauritsen | 29:6711180763b6 | 143 | //uint8_t Zdat; |
gert_lauritsen | 11:18ff088287ea | 144 | /** |
gert_lauritsen | 11:18ff088287ea | 145 | * Indicator on that we have got a ack on a packet |
gert_lauritsen | 11:18ff088287ea | 146 | */ |
gert_lauritsen | 26:2a85af491d92 | 147 | uint8_t PacketAck; |
gert_lauritsen | 27:a38b67f5be8f | 148 | /*Wait for ok from radio |
gert_lauritsen | 27:a38b67f5be8f | 149 | */ |
gert_lauritsen | 27:a38b67f5be8f | 150 | bool wait4OK(); |
gert_lauritsen | 27:a38b67f5be8f | 151 | |
gert_lauritsen | 11:18ff088287ea | 152 | int channel, NodeID, EPID,framesize, PanOnline; |
gert_lauritsen | 21:9c5b72a64495 | 153 | char NetNodeID[17]; //a remote node |
gert_lauritsen | 21:9c5b72a64495 | 154 | char NetInfo; //indication that network info is ready |
gert_lauritsen | 17:5a3f81b10a61 | 155 | /** |
gert_lauritsen | 17:5a3f81b10a61 | 156 | */ |
gert_lauritsen | 17:5a3f81b10a61 | 157 | uint8_t ErrorCode; |
gert_lauritsen | 11:18ff088287ea | 158 | /** |
gert_lauritsen | 11:18ff088287ea | 159 | * Reads all available serial bytes until a packet is parsed, an error occurs, or the buffer is empty. |
gert_lauritsen | 11:18ff088287ea | 160 | * You may call <i>xbee</i>.getResponse().isAvailable() after calling this method to determine if |
gert_lauritsen | 11:18ff088287ea | 161 | * a packet is ready, or <i>xbee</i>.getResponse().isError() to determine if |
gert_lauritsen | 11:18ff088287ea | 162 | * a error occurred. |
gert_lauritsen | 11:18ff088287ea | 163 | * <p/> |
gert_lauritsen | 11:18ff088287ea | 164 | * This method should always return quickly since it does not wait for serial data to arrive. |
gert_lauritsen | 11:18ff088287ea | 165 | * You will want to use this method if you are doing other timely stuff in your loop, where |
gert_lauritsen | 11:18ff088287ea | 166 | * a delay would cause problems. |
gert_lauritsen | 11:18ff088287ea | 167 | * NOTE: calling this method resets the current response, so make sure you first consume the |
gert_lauritsen | 11:18ff088287ea | 168 | * current response |
gert_lauritsen | 11:18ff088287ea | 169 | */ |
gert_lauritsen | 11:18ff088287ea | 170 | void readPacket(); |
gert_lauritsen | 11:18ff088287ea | 171 | /**Looks for a packet but dont wait |
gert_lauritsen | 11:18ff088287ea | 172 | */ |
gert_lauritsen | 12:debf76f0c0bf | 173 | void SeePacket(); |
gert_lauritsen | 18:10fcddf238c9 | 174 | /** |
gert_lauritsen | 18:10fcddf238c9 | 175 | * Non blocking check og data. To be used in NON IRQ mode |
gert_lauritsen | 18:10fcddf238c9 | 176 | */ |
gert_lauritsen | 26:2a85af491d92 | 177 | bool Work(); |
gert_lauritsen | 19:78f44233a12f | 178 | char _responseFrameString[MAX_FRAME_DATA_SIZE]; |
gert_lauritsen | 24:5ed5311266b0 | 179 | uint8_t GotFrame; //indicate that a frame has been recieved |
gert_lauritsen | 28:c724a8921f01 | 180 | uint8_t Ok; |
gert_lauritsen | 11:18ff088287ea | 181 | private: |
gert_lauritsen | 11:18ff088287ea | 182 | uint8_t b; |
gert_lauritsen | 11:18ff088287ea | 183 | int SeqNumber; |
gert_lauritsen | 30:f9cdb6f62586 | 184 | char tmpstr[30]; |
gert_lauritsen | 11:18ff088287ea | 185 | // buffer for incoming RX packets. holds only the api specific frame data, starting after the api id byte and prior to checksum |
gert_lauritsen | 19:78f44233a12f | 186 | |
gert_lauritsen | 29:6711180763b6 | 187 | RawSerial _zbee; |
gert_lauritsen | 20:070dc2050052 | 188 | bool wait4Offline(); |
gert_lauritsen | 20:070dc2050052 | 189 | bool wait4JPAN(); |
gert_lauritsen | 20:070dc2050052 | 190 | bool wait4str(char *p); |
gert_lauritsen | 30:f9cdb6f62586 | 191 | char *list[ZdataSize]; |
gert_lauritsen | 30:f9cdb6f62586 | 192 | size_t comma_parse ( char *line, char *list[], size_t size ); |
gert_lauritsen | 11:18ff088287ea | 193 | }; |
gert_lauritsen | 11:18ff088287ea | 194 | |
gert_lauritsen | 11:18ff088287ea | 195 | #endif |