Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: libxDot-mbed5 ISL29011
examples/inc/dot_util.h@25:56f7775c702f, 2018-03-14 (annotated)
- Committer:
- Evan Hosseini 
- Date:
- Wed Mar 14 14:38:08 2018 -0500
- Revision:
- 25:56f7775c702f
- Parent:
- 21:09d05faf0e13
- Child:
- 29:9e2c0d990ace
Updates for the dot 3.1 release
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| mfiore | 0:a151a6350d7f | 1 | #ifndef __DOT_UTIL_H__ | 
| mfiore | 0:a151a6350d7f | 2 | #define __DOT_UTIL_H__ | 
| mfiore | 0:a151a6350d7f | 3 | |
| mfiore | 0:a151a6350d7f | 4 | #include "mbed.h" | 
| mfiore | 0:a151a6350d7f | 5 | #include "mDot.h" | 
| Mike Fiore | 21:09d05faf0e13 | 6 | #include "ChannelPlans.h" | 
| mfiore | 0:a151a6350d7f | 7 | #include "MTSLog.h" | 
| mfiore | 0:a151a6350d7f | 8 | #include "MTSText.h" | 
| mfiore | 0:a151a6350d7f | 9 | #include "example_config.h" | 
| mfiore | 0:a151a6350d7f | 10 | |
| mfiore | 0:a151a6350d7f | 11 | extern mDot* dot; | 
| mfiore | 0:a151a6350d7f | 12 | |
| mfiore | 0:a151a6350d7f | 13 | void display_config(); | 
| mfiore | 0:a151a6350d7f | 14 | |
| Evan Hosseini | 25:56f7775c702f | 15 | void update_ota_config_name_phrase(std::string network_name, std::string network_passphrase, uint8_t frequency_sub_band, lora::NetworkType network_type, uint8_t ack); | 
| Mike Fiore | 5:97ed5f2f099e | 16 | |
| Mike Fiore | 5:97ed5f2f099e | 17 | void update_ota_config_id_key(uint8_t *network_id, uint8_t *network_key, uint8_t frequency_sub_band, bool public_network, uint8_t ack); | 
| mfiore | 0:a151a6350d7f | 18 | |
| Mike Fiore | 8:e667f4a507b1 | 19 | void update_manual_config(uint8_t *network_address, uint8_t *network_session_key, uint8_t *data_session_key, uint8_t frequency_sub_band, bool public_network, uint8_t ack); | 
| Mike Fiore | 8:e667f4a507b1 | 20 | |
| Mike Fiore | 12:ec9768677cea | 21 | void update_peer_to_peer_config(uint8_t *network_address, uint8_t *network_session_key, uint8_t *data_session_key, uint32_t tx_frequency, uint8_t tx_datarate, uint8_t tx_power); | 
| Mike Fiore | 12:ec9768677cea | 22 | |
| Mike Fiore | 15:364df461110f | 23 | void update_network_link_check_config(uint8_t link_check_count, uint8_t link_check_threshold); | 
| Mike Fiore | 15:364df461110f | 24 | |
| mfiore | 0:a151a6350d7f | 25 | void join_network(); | 
| mfiore | 0:a151a6350d7f | 26 | |
| mfiore | 0:a151a6350d7f | 27 | void sleep_wake_rtc_only(bool deepsleep); | 
| mfiore | 0:a151a6350d7f | 28 | |
| mfiore | 0:a151a6350d7f | 29 | void sleep_wake_interrupt_only(bool deepsleep); | 
| mfiore | 0:a151a6350d7f | 30 | |
| mfiore | 0:a151a6350d7f | 31 | void sleep_wake_rtc_or_interrupt(bool deepsleep); | 
| mfiore | 0:a151a6350d7f | 32 | |
| Mike Fiore | 7:724cb82a113e | 33 | void sleep_save_io(); | 
| Mike Fiore | 7:724cb82a113e | 34 | |
| Mike Fiore | 7:724cb82a113e | 35 | void sleep_configure_io(); | 
| Mike Fiore | 7:724cb82a113e | 36 | |
| Mike Fiore | 7:724cb82a113e | 37 | void sleep_restore_io(); | 
| Mike Fiore | 7:724cb82a113e | 38 | |
| mfiore | 0:a151a6350d7f | 39 | void send_data(std::vector<uint8_t> data); | 
| mfiore | 0:a151a6350d7f | 40 | |
| mfiore | 0:a151a6350d7f | 41 | #endif |