// // Created by erki on 14.07.22. // #ifndef SKL_TUNNEL_APP_SETTINGS_HPP #define SKL_TUNNEL_APP_SETTINGS_HPP #include namespace App { struct RadioSettings { std::uint16_t short_address = 0x0230; std::uint64_t long_address = 0x1222334455667788; std::uint8_t channel = 11; std::uint16_t pan_id = 0x0023; std::int16_t tx_power_dbm = 0; std::uint8_t retries = 3; }; } #endif //SKL_TUNNEL_APP_SETTINGS_HPP