Skip to content

Commit b83e0d5

Browse files
committed
Merge branch 'bugfix/dtim_ie_len_ap_ng' into 'master'
fix(esp_hosted_ng): Fix AP dtim ie len for beacon See merge request app-frameworks/esp_hosted!548
2 parents 7144dd9 + c79b7e1 commit b83e0d5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+3
-4
lines changed

.gitlab/ci/build_firmware.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ git submodule update --init --depth=1
1313

1414
echo "ESP hosted: initializing submodule for esp-idf"
1515
cd esp-idf
16-
git submodule update --init --depth=1
16+
git submodule update --init --depth=1 -f
1717

1818
echo "ESP hosted: installing prerequisites for $TGT_NAME"
1919
./install.sh $TGT_NAME
0 Bytes
Binary file not shown.
-80 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
-84 Bytes
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-40 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-76 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

esp_hosted_ng/esp/esp_driver/network_adapter/main/include/esp_fw_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
#define PROJECT_VERSION_MAJOR_2 0
1010
#define PROJECT_VERSION_MINOR 3
1111
#define PROJECT_REVISION_PATCH_1 0
12-
#define PROJECT_REVISION_PATCH_2 5
12+
#define PROJECT_REVISION_PATCH_2 6
1313

1414
#endif

esp_hosted_ng/host/esp_cfg80211.c

-1
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,6 @@ static int esp_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
850850
struct esp_ap_config ap_config = {0};
851851
int res;
852852
int i;
853-
const uint8_t *rsn_ie;
854853

855854
if (!wiphy || !dev) {
856855
esp_err("%u invalid params\n", __LINE__);

esp_hosted_ng/host/include/esp_fw_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
#define PROJECT_VERSION_MAJOR_2 0
1010
#define PROJECT_VERSION_MINOR 3
1111
#define PROJECT_REVISION_PATCH_1 0
12-
#define PROJECT_REVISION_PATCH_2 5
12+
#define PROJECT_REVISION_PATCH_2 6
1313

1414
#endif

0 commit comments

Comments
 (0)