Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Make agents wait for dev_set_config/WPS PBC before master discovery #1572

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1ec5ab4
agent: Move front radio configuration to AgentDB
orenvor Aug 4, 2020
a90ff11
agent: Move back radio configuration to AgentDB
orenvor Aug 4, 2020
e0f140c
agent: Move mem_only_psk configuration to AgentDB
orenvor Aug 5, 2020
9684b1c
agent: Move backhaul_max_vaps configuration to AgentDB
orenvor Aug 6, 2020
c6e86bf
agent: Move backhaul_network_enabled configuration to AgentDB
orenvor Aug 6, 2020
7e31c72
agent: Move backhaul_preferred_radio_band configuration to AgentDB
orenvor Aug 6, 2020
e4b3863
agent: Move operating_mode configuration to AgentDB
orenvor Aug 6, 2020
9a2d18a
agent: Move management_mode configuration to AgentDB
orenvor Aug 6, 2020
b5eff11
agent: Move certification_mode configuration to AgentDB
orenvor Aug 6, 2020
00e80bc
agent: Move stop_on_failure_attempts configuration to AgentDB
orenvor Aug 6, 2020
16907ff
agent: Move client_band_steering_enabled configuration to AgentDB
orenvor Aug 6, 2020
f479475
agent: Move client_optimal_path_roaming_enabled configuration to AgentDB
orenvor Aug 6, 2020
50c0a7f
agent: Move dfs_reentry_enabled configuration to AgentDB
orenvor Aug 6, 2020
b12b1dd
agent: Move client_optimal_path_prefer_signal_strength to AgentDB
orenvor Aug 6, 2020
0254f28
agent: Move client_11k_roaming_enabled configuration to AgentDB
orenvor Aug 6, 2020
cd995b3
agent: Move load_balancing_enabled configuration to AgentDB
orenvor Aug 6, 2020
869767a
agent: Move service_fairness_enabled configuration to AgentDB
orenvor Aug 6, 2020
0134cb2
agent: Move rdkb_extensions_enabled configuration to AgentDB
orenvor Aug 6, 2020
5881aa0
agent: remove unused onboarding configuration
orenvor Aug 10, 2020
dde1284
tlvf: beerocks_message::sPlatformSettings remove unused settings
orenvor Aug 9, 2020
ccac7e9
agent: Remove "platform_settings" local variable from son_slave_thread
orenvor Aug 11, 2020
12ca153
agent: Move wlan_settings configuration to AgentDB
orenvor Aug 11, 2020
a9638cc
fixup! agent: Move wlan_settings configuration to AgentDB
orenvor Aug 12, 2020
e355119
tlvf: PLATFORM_SON_SLAVE_REGISTER_RESPONSE remove unused fields
orenvor Aug 12, 2020
9f3ce07
test_flows.py: add timeouts to make tests pass
vitalii-komisarenko Aug 10, 2020
5610ca4
test_gw_repeater: disable operational test for repeaters
vitalii-komisarenko Aug 10, 2020
fb61391
test_flows: send dev_set_config to repeaters before tests
vitalii-komisarenko Aug 10, 2020
de689cf
agent: backhaul_manager: wait for dev_set_config in certification
vitalii-komisarenko Jul 28, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tlvf: beerocks_message::sPlatformSettings remove unused settings
Remove of unused fields from sPlatformSettings struct.
Those fields have been moved to the Agent_DB and there for no longer
needed as part of a beerocks massage.

PPM-338

Signed-off-by: Oren Vormaser <[email protected]>
  • Loading branch information
orenvor authored and vitalii-komisarenko committed Aug 13, 2020
commit dde1284b0f8ca2a858e39aa5b9cd24bf356276a5
Original file line number Diff line number Diff line change
Expand Up @@ -72,20 +72,7 @@ typedef struct sSonConfig {
} __attribute__((packed)) sSonConfig;

typedef struct sPlatformSettings {
char front_ssid[beerocks::message::WIFI_SSID_MAX_LENGTH];
char front_pass[beerocks::message::WIFI_PASS_MAX_LENGTH];
char front_security_type[beerocks::message::WIFI_SECURITY_TYPE_MAX_LENGTH];
char back_ssid[beerocks::message::WIFI_SSID_MAX_LENGTH];
char back_pass[beerocks::message::WIFI_PASS_MAX_LENGTH];
char back_security_type[beerocks::message::WIFI_SECURITY_TYPE_MAX_LENGTH];
uint8_t onboarding;
uint8_t local_master;
uint8_t local_gw;
uint8_t operating_mode;
uint8_t management_mode;
uint8_t mem_only_psk;
uint8_t certification_mode;
uint8_t stop_on_failure_attempts;
uint8_t client_band_steering_enabled;
uint8_t client_optimal_path_roaming_enabled;
uint8_t dfs_reentry_enabled;
Expand All @@ -94,9 +81,6 @@ typedef struct sPlatformSettings {
uint8_t load_balancing_enabled;
uint8_t service_fairness_enabled;
uint8_t rdkb_extensions_enabled;
uint8_t backhaul_max_vaps;
uint8_t backhaul_network_enabled;
uint8_t backhaul_preferred_radio_band;
void struct_swap(){
}
void struct_init(){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,33 +50,7 @@ sSonConfig:

sPlatformSettings:
_type: struct
front_ssid:
_type: char
_length: ["beerocks::message::WIFI_SSID_MAX_LENGTH"]
front_pass:
_type: char
_length: ["beerocks::message::WIFI_PASS_MAX_LENGTH"]
front_security_type:
_type: char
_length: ["beerocks::message::WIFI_SECURITY_TYPE_MAX_LENGTH"]
back_ssid:
_type: char
_length: ["beerocks::message::WIFI_SSID_MAX_LENGTH"]
back_pass:
_type: char
_length: ["beerocks::message::WIFI_PASS_MAX_LENGTH"]
back_security_type:
_type: char
_length: ["beerocks::message::WIFI_SECURITY_TYPE_MAX_LENGTH"]
onboarding: uint8_t
local_master: uint8_t
local_gw: uint8_t
operating_mode: uint8_t
management_mode: uint8_t
mem_only_psk: uint8_t

certification_mode: uint8_t
stop_on_failure_attempts: uint8_t

client_band_steering_enabled: uint8_t
client_optimal_path_roaming_enabled: uint8_t
Expand All @@ -89,10 +63,6 @@ sPlatformSettings:

rdkb_extensions_enabled: uint8_t

backhaul_max_vaps: uint8_t
backhaul_network_enabled: uint8_t
backhaul_preferred_radio_band: uint8_t

sWlanSettings:
_type: struct
band_enabled:
Expand Down