
FF1705 support added
Dependencies: libxDot-dev-mbed5-deprecated ISL29011
Fork of Dot-Examples by
Dot-Examples rev. 31:7ec180e84cb6 have been tested with xdot-library 3.0.0-19-gb6c0ba2 and mbed-os-5.6.2
examples/src/peer_to_peer_example.cpp@26:79d1af6752dd, 2017-09-06 (annotated)
- Committer:
- gorazdko
- Date:
- Wed Sep 06 08:12:24 2017 +0000
- Revision:
- 26:79d1af6752dd
- Parent:
- 25:c30633bcf302
- Child:
- 30:2c57bd7c0324
FF1705 support added in all examples
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Mike Fiore |
11:d2e31743433a | 1 | #include "dot_util.h" |
Mike Fiore |
14:19fae4509473 | 2 | #include "RadioEvent.h" |
Mike Fiore |
11:d2e31743433a | 3 | |
Mike Fiore |
11:d2e31743433a | 4 | #if ACTIVE_EXAMPLE == PEER_TO_PEER_EXAMPLE |
Mike Fiore |
11:d2e31743433a | 5 | |
mfiore | 17:d4f82e16de5f | 6 | ///////////////////////////////////////////////////////////////////////////// |
mfiore | 17:d4f82e16de5f | 7 | // -------------------- DOT LIBRARY REQUIRED ------------------------------// |
mfiore | 17:d4f82e16de5f | 8 | // * Because these example programs can be used for both mDot and xDot // |
mfiore | 17:d4f82e16de5f | 9 | // devices, the LoRa stack is not included. The libmDot library should // |
mfiore | 17:d4f82e16de5f | 10 | // be imported if building for mDot devices. The libxDot library // |
mfiore | 17:d4f82e16de5f | 11 | // should be imported if building for xDot devices. // |
mfiore | 17:d4f82e16de5f | 12 | // * https://developer.mbed.org/teams/MultiTech/code/libmDot-dev-mbed5/ // |
mfiore | 17:d4f82e16de5f | 13 | // * https://developer.mbed.org/teams/MultiTech/code/libmDot-mbed5/ // |
mfiore | 17:d4f82e16de5f | 14 | // * https://developer.mbed.org/teams/MultiTech/code/libxDot-dev-mbed5/ // |
mfiore | 17:d4f82e16de5f | 15 | // * https://developer.mbed.org/teams/MultiTech/code/libxDot-mbed5/ // |
mfiore | 17:d4f82e16de5f | 16 | ///////////////////////////////////////////////////////////////////////////// |
mfiore | 17:d4f82e16de5f | 17 | |
Mike Fiore |
11:d2e31743433a | 18 | ///////////////////////////////////////////////////////////// |
Mike Fiore |
11:d2e31743433a | 19 | // * these options must match between the two devices in // |
Mike Fiore |
11:d2e31743433a | 20 | // order for communication to be successful |
Mike Fiore |
11:d2e31743433a | 21 | ///////////////////////////////////////////////////////////// |
Mike Fiore |
11:d2e31743433a | 22 | static uint8_t network_address[] = { 0x01, 0x02, 0x03, 0x04 }; |
Mike Fiore |
11:d2e31743433a | 23 | static uint8_t network_session_key[] = { 0x01, 0x02, 0x03, 0x04, 0x01, 0x02, 0x03, 0x04, 0x01, 0x02, 0x03, 0x04, 0x01, 0x02, 0x03, 0x04 }; |
Mike Fiore |
11:d2e31743433a | 24 | static uint8_t data_session_key[] = { 0x01, 0x02, 0x03, 0x04, 0x01, 0x02, 0x03, 0x04, 0x01, 0x02, 0x03, 0x04, 0x01, 0x02, 0x03, 0x04 }; |
Mike Fiore |
11:d2e31743433a | 25 | |
Mike Fiore |
11:d2e31743433a | 26 | mDot* dot = NULL; |
Mike Fiore |
21:09d05faf0e13 | 27 | lora::ChannelPlan* plan = NULL; |
Mike Fiore |
11:d2e31743433a | 28 | |
Mike Fiore |
11:d2e31743433a | 29 | Serial pc(USBTX, USBRX); |
Mike Fiore |
11:d2e31743433a | 30 | |
gorazdko | 25:c30633bcf302 | 31 | #ifdef TARGET_FF1705_L151CC |
gorazdko | 26:79d1af6752dd | 32 | uint16_t lux[3]={1,2,3}; |
gorazdko | 25:c30633bcf302 | 33 | #elif defined(TARGET_XDOT_L151CC) |
Mike Fiore |
11:d2e31743433a | 34 | I2C i2c(I2C_SDA, I2C_SCL); |
Mike Fiore |
11:d2e31743433a | 35 | ISL29011 lux(i2c); |
Mike Fiore |
11:d2e31743433a | 36 | #else |
Mike Fiore |
11:d2e31743433a | 37 | AnalogIn lux(XBEE_AD0); |
Mike Fiore |
11:d2e31743433a | 38 | #endif |
Mike Fiore |
11:d2e31743433a | 39 | |
Mike Fiore |
11:d2e31743433a | 40 | int main() { |
Mike Fiore |
14:19fae4509473 | 41 | // Custom event handler for automatically displaying RX data |
Mike Fiore |
11:d2e31743433a | 42 | RadioEvent events; |
Mike Fiore |
11:d2e31743433a | 43 | uint32_t tx_frequency; |
Mike Fiore |
11:d2e31743433a | 44 | uint8_t tx_datarate; |
Mike Fiore |
11:d2e31743433a | 45 | uint8_t tx_power; |
Mike Fiore |
11:d2e31743433a | 46 | uint8_t frequency_band; |
Mike Fiore |
11:d2e31743433a | 47 | |
Mike Fiore |
11:d2e31743433a | 48 | pc.baud(115200); |
Mike Fiore |
11:d2e31743433a | 49 | |
Mike Fiore |
11:d2e31743433a | 50 | mts::MTSLog::setLogLevel(mts::MTSLog::TRACE_LEVEL); |
Mike Fiore |
11:d2e31743433a | 51 | |
Mike Fiore |
21:09d05faf0e13 | 52 | #if CHANNEL_PLAN == CP_US915 |
Mike Fiore |
21:09d05faf0e13 | 53 | plan = new lora::ChannelPlan_US915(); |
Mike Fiore |
21:09d05faf0e13 | 54 | #elif CHANNEL_PLAN == CP_AU915 |
Mike Fiore |
21:09d05faf0e13 | 55 | plan = new lora::ChannelPlan_AU915(); |
Mike Fiore |
21:09d05faf0e13 | 56 | #elif CHANNEL_PLAN == CP_EU868 |
Mike Fiore |
21:09d05faf0e13 | 57 | plan = new lora::ChannelPlan_EU868(); |
Mike Fiore |
21:09d05faf0e13 | 58 | #elif CHANNEL_PLAN == CP_KR920 |
Mike Fiore |
21:09d05faf0e13 | 59 | plan = new lora::ChannelPlan_KR920(); |
Mike Fiore |
21:09d05faf0e13 | 60 | #elif CHANNEL_PLAN == CP_AS923 |
Mike Fiore |
21:09d05faf0e13 | 61 | plan = new lora::ChannelPlan_AS923(); |
Mike Fiore |
21:09d05faf0e13 | 62 | #elif CHANNEL_PLAN == CP_AS923_JAPAN |
Mike Fiore |
21:09d05faf0e13 | 63 | plan = new lora::ChannelPlan_AS923_Japan(); |
mfiore | 22:d9bc10bbc433 | 64 | #elif CHANNEL_PLAN == CP_IN865 |
mfiore | 22:d9bc10bbc433 | 65 | plan = new lora::ChannelPlan_IN865(); |
Mike Fiore |
21:09d05faf0e13 | 66 | #endif |
Mike Fiore |
21:09d05faf0e13 | 67 | assert(plan); |
Mike Fiore |
21:09d05faf0e13 | 68 | |
Mike Fiore |
21:09d05faf0e13 | 69 | dot = mDot::getInstance(plan); |
Mike Fiore |
21:09d05faf0e13 | 70 | assert(dot); |
Mike Fiore |
11:d2e31743433a | 71 | |
Mike Fiore |
16:a3832552dfe1 | 72 | logInfo("mbed-os library version: %d", MBED_LIBRARY_VERSION); |
Mike Fiore |
16:a3832552dfe1 | 73 | |
Mike Fiore |
12:ec9768677cea | 74 | // start from a well-known state |
Mike Fiore |
12:ec9768677cea | 75 | logInfo("defaulting Dot configuration"); |
Mike Fiore |
12:ec9768677cea | 76 | dot->resetConfig(); |
Mike Fiore |
12:ec9768677cea | 77 | |
Mike Fiore |
11:d2e31743433a | 78 | // make sure library logging is turned on |
Mike Fiore |
11:d2e31743433a | 79 | dot->setLogLevel(mts::MTSLog::INFO_LEVEL); |
Mike Fiore |
11:d2e31743433a | 80 | |
Mike Fiore |
11:d2e31743433a | 81 | // attach the custom events handler |
Mike Fiore |
11:d2e31743433a | 82 | dot->setEvents(&events); |
Mike Fiore |
11:d2e31743433a | 83 | |
Mike Fiore |
11:d2e31743433a | 84 | // update configuration if necessary |
Mike Fiore |
11:d2e31743433a | 85 | if (dot->getJoinMode() != mDot::PEER_TO_PEER) { |
Mike Fiore |
11:d2e31743433a | 86 | logInfo("changing network join mode to PEER_TO_PEER"); |
Mike Fiore |
11:d2e31743433a | 87 | if (dot->setJoinMode(mDot::PEER_TO_PEER) != mDot::MDOT_OK) { |
Mike Fiore |
11:d2e31743433a | 88 | logError("failed to set network join mode to PEER_TO_PEER"); |
Mike Fiore |
11:d2e31743433a | 89 | } |
Mike Fiore |
11:d2e31743433a | 90 | } |
Mike Fiore |
11:d2e31743433a | 91 | frequency_band = dot->getFrequencyBand(); |
Mike Fiore |
11:d2e31743433a | 92 | switch (frequency_band) { |
Mike Fiore |
21:09d05faf0e13 | 93 | case lora::ChannelPlan::EU868_OLD: |
Mike Fiore |
21:09d05faf0e13 | 94 | case lora::ChannelPlan::EU868: |
Mike Fiore |
11:d2e31743433a | 95 | // 250kHz channels achieve higher throughput |
Mike Fiore |
21:09d05faf0e13 | 96 | // DR_6 : SF7 @ 250kHz |
Mike Fiore |
21:09d05faf0e13 | 97 | // DR_0 - DR_5 (125kHz channels) available but much slower |
Mike Fiore |
11:d2e31743433a | 98 | tx_frequency = 869850000; |
Mike Fiore |
21:09d05faf0e13 | 99 | tx_datarate = lora::DR_6; |
Mike Fiore |
11:d2e31743433a | 100 | // the 869850000 frequency is 100% duty cycle if the total power is under 7 dBm - tx power 4 + antenna gain 3 = 7 |
Mike Fiore |
11:d2e31743433a | 101 | tx_power = 4; |
Mike Fiore |
11:d2e31743433a | 102 | break; |
Mike Fiore |
21:09d05faf0e13 | 103 | |
Mike Fiore |
21:09d05faf0e13 | 104 | case lora::ChannelPlan::US915_OLD: |
Mike Fiore |
21:09d05faf0e13 | 105 | case lora::ChannelPlan::US915: |
Mike Fiore |
21:09d05faf0e13 | 106 | case lora::ChannelPlan::AU915_OLD: |
Mike Fiore |
21:09d05faf0e13 | 107 | case lora::ChannelPlan::AU915: |
Mike Fiore |
11:d2e31743433a | 108 | // 500kHz channels achieve highest throughput |
Mike Fiore |
21:09d05faf0e13 | 109 | // DR_8 : SF12 @ 500kHz |
Mike Fiore |
21:09d05faf0e13 | 110 | // DR_9 : SF11 @ 500kHz |
Mike Fiore |
21:09d05faf0e13 | 111 | // DR_10 : SF10 @ 500kHz |
Mike Fiore |
21:09d05faf0e13 | 112 | // DR_11 : SF9 @ 500kHz |
Mike Fiore |
21:09d05faf0e13 | 113 | // DR_12 : SF8 @ 500kHz |
Mike Fiore |
21:09d05faf0e13 | 114 | // DR_13 : SF7 @ 500kHz |
Mike Fiore |
21:09d05faf0e13 | 115 | // DR_0 - DR_3 (125kHz channels) available but much slower |
Mike Fiore |
11:d2e31743433a | 116 | tx_frequency = 915500000; |
Mike Fiore |
21:09d05faf0e13 | 117 | tx_datarate = lora::DR_13; |
Mike Fiore |
11:d2e31743433a | 118 | // 915 bands have no duty cycle restrictions, set tx power to max |
Mike Fiore |
11:d2e31743433a | 119 | tx_power = 20; |
Mike Fiore |
11:d2e31743433a | 120 | break; |
Mike Fiore |
21:09d05faf0e13 | 121 | |
Mike Fiore |
21:09d05faf0e13 | 122 | case lora::ChannelPlan::AS923: |
Mike Fiore |
21:09d05faf0e13 | 123 | case lora::ChannelPlan::AS923_JAPAN: |
Mike Fiore |
21:09d05faf0e13 | 124 | // 250kHz channels achieve higher throughput |
Mike Fiore |
21:09d05faf0e13 | 125 | // DR_6 : SF7 @ 250kHz |
Mike Fiore |
21:09d05faf0e13 | 126 | // DR_0 - DR_5 (125kHz channels) available but much slower |
Mike Fiore |
21:09d05faf0e13 | 127 | tx_frequency = 924800000; |
Mike Fiore |
21:09d05faf0e13 | 128 | tx_datarate = lora::DR_6; |
Mike Fiore |
21:09d05faf0e13 | 129 | tx_power = 16; |
Mike Fiore |
21:09d05faf0e13 | 130 | break; |
Mike Fiore |
21:09d05faf0e13 | 131 | |
Mike Fiore |
21:09d05faf0e13 | 132 | case lora::ChannelPlan::KR920: |
Mike Fiore |
21:09d05faf0e13 | 133 | // DR_5 : SF7 @ 125kHz |
Mike Fiore |
21:09d05faf0e13 | 134 | tx_frequency = 922700000; |
Mike Fiore |
21:09d05faf0e13 | 135 | tx_datarate = lora::DR_5; |
Mike Fiore |
21:09d05faf0e13 | 136 | tx_power = 14; |
Mike Fiore |
21:09d05faf0e13 | 137 | break; |
Mike Fiore |
21:09d05faf0e13 | 138 | |
Mike Fiore |
21:09d05faf0e13 | 139 | default: |
Mike Fiore |
21:09d05faf0e13 | 140 | while (true) { |
Mike Fiore |
21:09d05faf0e13 | 141 | logFatal("no known channel plan in use - extra configuration is needed!"); |
Mike Fiore |
21:09d05faf0e13 | 142 | wait(5); |
Mike Fiore |
21:09d05faf0e13 | 143 | } |
Mike Fiore |
21:09d05faf0e13 | 144 | break; |
Mike Fiore |
11:d2e31743433a | 145 | } |
Mike Fiore |
11:d2e31743433a | 146 | // in PEER_TO_PEER mode there is no join request/response transaction |
Mike Fiore |
11:d2e31743433a | 147 | // as long as both Dots are configured correctly, they should be able to communicate |
Mike Fiore |
11:d2e31743433a | 148 | update_peer_to_peer_config(network_address, network_session_key, data_session_key, tx_frequency, tx_datarate, tx_power); |
Mike Fiore |
11:d2e31743433a | 149 | |
Mike Fiore |
11:d2e31743433a | 150 | // save changes to configuration |
Mike Fiore |
11:d2e31743433a | 151 | logInfo("saving configuration"); |
Mike Fiore |
11:d2e31743433a | 152 | if (!dot->saveConfig()) { |
Mike Fiore |
11:d2e31743433a | 153 | logError("failed to save configuration"); |
Mike Fiore |
11:d2e31743433a | 154 | } |
Mike Fiore |
11:d2e31743433a | 155 | |
Mike Fiore |
11:d2e31743433a | 156 | // display configuration |
Mike Fiore |
11:d2e31743433a | 157 | display_config(); |
Mike Fiore |
11:d2e31743433a | 158 | |
Mike Fiore |
11:d2e31743433a | 159 | #if defined(TARGET_XDOT_L151CC) |
Mike Fiore |
11:d2e31743433a | 160 | // configure the ISL29011 sensor on the xDot-DK for continuous ambient light sampling, 16 bit conversion, and maximum range |
Mike Fiore |
11:d2e31743433a | 161 | lux.setMode(ISL29011::ALS_CONT); |
Mike Fiore |
11:d2e31743433a | 162 | lux.setResolution(ISL29011::ADC_16BIT); |
Mike Fiore |
11:d2e31743433a | 163 | lux.setRange(ISL29011::RNG_64000); |
Mike Fiore |
11:d2e31743433a | 164 | #endif |
Mike Fiore |
11:d2e31743433a | 165 | |
Mike Fiore |
11:d2e31743433a | 166 | while (true) { |
Mike Fiore |
11:d2e31743433a | 167 | uint16_t light; |
Mike Fiore |
11:d2e31743433a | 168 | std::vector<uint8_t> tx_data; |
Mike Fiore |
11:d2e31743433a | 169 | |
Mike Fiore |
11:d2e31743433a | 170 | // join network if not joined |
Mike Fiore |
11:d2e31743433a | 171 | if (!dot->getNetworkJoinStatus()) { |
Mike Fiore |
11:d2e31743433a | 172 | join_network(); |
Mike Fiore |
11:d2e31743433a | 173 | } |
Mike Fiore |
11:d2e31743433a | 174 | |
gorazdko | 25:c30633bcf302 | 175 | #ifdef TARGET_FF1705_L151CC |
gorazdko | 26:79d1af6752dd | 176 | // get some dummy data and send it to the gateway |
gorazdko | 25:c30633bcf302 | 177 | static int cnt = 0; |
gorazdko | 25:c30633bcf302 | 178 | light = lux[cnt++]; |
gorazdko | 26:79d1af6752dd | 179 | if (cnt >= sizeof(lux)) cnt=0; |
gorazdko | 26:79d1af6752dd | 180 | |
gorazdko | 26:79d1af6752dd | 181 | tx_data.push_back((light >> 8) & 0xFF); |
gorazdko | 26:79d1af6752dd | 182 | tx_data.push_back(light & 0xFF); |
gorazdko | 26:79d1af6752dd | 183 | logInfo("light: %lu [0x%04X]", light, light); |
gorazdko | 26:79d1af6752dd | 184 | send_data(tx_data); |
gorazdko | 26:79d1af6752dd | 185 | |
gorazdko | 25:c30633bcf302 | 186 | #elif defined(TARGET_XDOT_L151CC) |
Mike Fiore |
11:d2e31743433a | 187 | // get the latest light sample and send it to the gateway |
Mike Fiore |
11:d2e31743433a | 188 | light = lux.getData(); |
Mike Fiore |
11:d2e31743433a | 189 | tx_data.push_back((light >> 8) & 0xFF); |
Mike Fiore |
11:d2e31743433a | 190 | tx_data.push_back(light & 0xFF); |
Mike Fiore |
11:d2e31743433a | 191 | logInfo("light: %lu [0x%04X]", light, light); |
Mike Fiore |
11:d2e31743433a | 192 | send_data(tx_data); |
Mike Fiore |
11:d2e31743433a | 193 | #else |
Mike Fiore |
11:d2e31743433a | 194 | // get some dummy data and send it to the gateway |
Mike Fiore |
11:d2e31743433a | 195 | light = lux.read_u16(); |
Mike Fiore |
11:d2e31743433a | 196 | tx_data.push_back((light >> 8) & 0xFF); |
Mike Fiore |
11:d2e31743433a | 197 | tx_data.push_back(light & 0xFF); |
Mike Fiore |
11:d2e31743433a | 198 | logInfo("light: %lu [0x%04X]", light, light); |
Mike Fiore |
11:d2e31743433a | 199 | send_data(tx_data); |
Mike Fiore |
11:d2e31743433a | 200 | #endif |
Mike Fiore |
11:d2e31743433a | 201 | |
Mike Fiore |
11:d2e31743433a | 202 | // the Dot can't sleep in PEER_TO_PEER mode |
Mike Fiore |
11:d2e31743433a | 203 | // it must be waiting for data from the other Dot |
Mike Fiore |
11:d2e31743433a | 204 | // send data every 5 seconds |
Mike Fiore |
11:d2e31743433a | 205 | logInfo("waiting for 5s"); |
Mike Fiore |
11:d2e31743433a | 206 | wait(5); |
Mike Fiore |
11:d2e31743433a | 207 | } |
Mike Fiore |
11:d2e31743433a | 208 | |
Mike Fiore |
11:d2e31743433a | 209 | return 0; |
Mike Fiore |
11:d2e31743433a | 210 | } |
Mike Fiore |
11:d2e31743433a | 211 | |
Mike Fiore |
11:d2e31743433a | 212 | #endif |
Mike Fiore |
11:d2e31743433a | 213 |