Skip to content

Commit

Permalink
Merge branch 'bugfix/fix_fragment_bug_v5.2' into 'release/v5.2'
Browse files Browse the repository at this point in the history
fix(wifi): fix fragment bug and esp32c6 issues (v5.2)

See merge request espressif/esp-idf!26955
  • Loading branch information
jack0c committed Nov 7, 2023
2 parents a2b9004 + 0204515 commit 42db3c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions components/esp_wifi/include/esp_now.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ typedef struct esp_now_rate_config {
wifi_phy_mode_t phymode; /**< ESPNOW phymode of specified interface */
wifi_phy_rate_t rate; /**< ESPNOW rate of specified interface*/
bool ersu; /**< ESPNOW using ersu send frame*/
bool dcm; /**< ESPNOW using dcm rate to send frame*/
} esp_now_rate_config_t;

/**
Expand Down
2 changes: 1 addition & 1 deletion components/esp_wifi/include/esp_wifi_he_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ typedef struct {
unsigned : 15; /**< reserved */
unsigned : 15; /**< reserved */
unsigned : 2; /**< reserved */
unsigned noise_floor : 8; /**< the noise floor of the reception frame */
signed noise_floor : 8; /**< the noise floor of the reception frame */
unsigned channel : 4; /**< the primary channel */
unsigned second : 4; /**< the second channel if in HT40 */
unsigned : 8; /**< reserved */
Expand Down

0 comments on commit 42db3c8

Please sign in to comment.