Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,6 @@ int8_t WhdSTAInterface::get_rssi()
int32_t rssi;
whd_result_t res;

// initialize wiced, this is noop if already init
if (!_whd_emac.powered_up) {
if(!_whd_emac.power_up()) {
CY_ASSERT(false);
Expand All @@ -408,7 +407,7 @@ int8_t WhdSTAInterface::get_rssi()

res = (whd_result_t)whd_wifi_get_rssi(_whd_emac.ifp, &rssi);
if (res != 0) {
CY_ASSERT(false);
/* The network GT tests expect that this function should return 0 in case of an error and not assert */
return 0;
}

Expand Down
1 change: 0 additions & 1 deletion targets/targets.json
Original file line number Diff line number Diff line change
Expand Up @@ -13963,7 +13963,6 @@
"extra_labels_add": [
"PSOC6_01",
"MXCRYPTO_01",
"CM0P_SLEEP",
"CORDIO"
],
"macros_add": [
Expand Down