Skip to content

Commit

Permalink
Fixed incorrect channel bandwidth.
Browse files Browse the repository at this point in the history
  • Loading branch information
Frostie314159 committed Feb 5, 2024
1 parent b7d1a37 commit 7af61ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "awdl-frame-parser"
version = "0.3.6"
version = "0.3.7"
edition = "2021"
description = "A parser for AWDL data and action frames."
authors = ["Frostie314159"]
Expand Down
5 changes: 4 additions & 1 deletion src/tlvs/sync_elect/channel_sequence_tlv/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ serializable_enum! {
TwentyMHz => 0x01,

/// 40MHz
FourtyMHz => 0x03
FourtyMHz => 0x02,

/// 80MHz
EightyMHz => 0x03
}
}
serializable_enum! {
Expand Down

0 comments on commit 7af61ec

Please sign in to comment.