Basic xdot code to check how many memory is available for user APP after initializing libxdot lorawan stack
examples/inc/dot_util.h
- Committer:
- mfiore
- Date:
- 2016-10-05
- Revision:
- 0:a151a6350d7f
- Child:
- 5:97ed5f2f099e
File content as of revision 0:a151a6350d7f:
#ifndef __DOT_UTIL_H__ #define __DOT_UTIL_H__ #include "mbed.h" #include "mDot.h" #include "MTSLog.h" #include "MTSText.h" #include "ISL29011.h" #include "example_config.h" extern mDot* dot; void display_config(); void update_ota_config(std::string network_name, std::string network_passphrase, uint8_t frequency_sub_band, bool public_network, uint8_t ack); void join_network(); void sleep_wake_rtc_only(bool deepsleep); void sleep_wake_interrupt_only(bool deepsleep); void sleep_wake_rtc_or_interrupt(bool deepsleep); void send_data(std::vector<uint8_t> data); #endif