Skip to content

luci-wireless: add 11be support#7279

Closed
rmandrad wants to merge 1 commit intoopenwrt:masterfrom
rmandrad:11be
Closed

luci-wireless: add 11be support#7279
rmandrad wants to merge 1 commit intoopenwrt:masterfrom
rmandrad:11be

Conversation

@rmandrad
Copy link
Copy Markdown
Contributor

@rmandrad rmandrad commented Sep 14, 2024

Add 11be support

Tested with banana rpi-4

In order to complete 11be support - the below pulls will need to be applied

RPCD - openwrt/rpcd#5
iwinfo - openwrt/iwinfo#10

Signed-off-by: Rudy Andram rmandrad@gmail.com
Tested-By: Daniel Pawlik pawlik.dan@gmail.com

@rmandrad
Copy link
Copy Markdown
Contributor Author

rmandrad commented Sep 14, 2024

screenshot / tested with banana rpi-4

image

@rmandrad rmandrad changed the title add 11be support luci-wireless add 11be support Sep 14, 2024
@rmandrad rmandrad changed the title luci-wireless add 11be support luci-wireless: add 11be support Sep 14, 2024
@rmandrad rmandrad closed this Sep 14, 2024
@rmandrad rmandrad reopened this Sep 14, 2024
@systemcrash systemcrash marked this pull request as draft September 14, 2024 20:26
@rmandrad rmandrad marked this pull request as ready for review September 15, 2024 11:19
@systemcrash systemcrash added the depends on PR in other repo PR depends on PR in sister repo e.g. openwrt/packags label Sep 15, 2024
@systemcrash systemcrash marked this pull request as draft September 16, 2024 13:51
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Sep 17, 2024
The forked luci project contains a patch [1] that will enable
BE standard.

[1] - openwrt/luci#7279
@rmandrad rmandrad marked this pull request as ready for review September 17, 2024 18:11
@rmandrad
Copy link
Copy Markdown
Contributor Author

rmandrad commented Sep 18, 2024

the below are now released

RPCD - openwrt/rpcd#5
iwinfo - openwrt/iwinfo#10

@rmandrad
Copy link
Copy Markdown
Contributor Author

@hnyman would you mind to have a look at this pr? both the RPCD and iwinfo PRs have been committed. thank you

@systemcrash
Copy link
Copy Markdown
Contributor

the below are now released

What do you mean, 'released'?

RPCD - openwrt/rpcd#5 iwinfo - openwrt/iwinfo#10

@rmandrad
Copy link
Copy Markdown
Contributor Author

rmandrad commented Sep 18, 2024

the below are now released

What do you mean, 'released'?

RPCD - openwrt/rpcd#5 iwinfo - openwrt/iwinfo#10

yes those dependent PRs have been merged

@systemcrash
Copy link
Copy Markdown
Contributor

yes those dependent PRs have been merged

merged.... where?

danpawlik added a commit to danpawlik/openwrt that referenced this pull request Sep 18, 2024
The forked luci project contains a patch [1] that will enable
BE standard.

[1] - openwrt/luci#7279

(cherry picked from commit 4d65ad8)
@systemcrash
Copy link
Copy Markdown
Contributor

Ah, OK. I see now. That was confusing because your linked PRs were/are not merged.

@rmandrad
Copy link
Copy Markdown
Contributor Author

Ah, OK. I see now. That was confusing because your linked PRs were/are not merged.

yes I was confused also ... but it got there eventually somehow ;)

Comment thread modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js Outdated
Comment thread modules/luci-base/htdocs/luci-static/resources/network.js Outdated
Comment thread modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js Outdated
Comment thread modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js Outdated
Comment thread modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js Outdated
Comment thread modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js Outdated
@dannil
Copy link
Copy Markdown
Contributor

dannil commented Sep 18, 2024

You should also update getHTModes() JSDoc to reflect the new EHT channel widths.

--- a/modules/luci-base/htdocs/luci-static/resources/network.js
+++ b/modules/luci-base/htdocs/luci-static/resources/network.js
@@ -3396,6 +3396,11 @@ WifiDevice = baseclass.extend(/** @lends LuCI.network.WifiDevice.prototype */ {
         *  - `HE40` - applicable to IEEE 802.11ax, 40 MHz wide channels
         *  - `HE80` - applicable to IEEE 802.11ax, 80 MHz wide channels
         *  - `HE160` - applicable to IEEE 802.11ax, 160 MHz wide channels
+        *  - `EHT20` - applicable to IEEE 802.11be, 20 MHz wide channels
+        *  - `EHT40` - applicable to IEEE 802.11be, 40 MHz wide channels
+        *  - `EHT80` - applicable to IEEE 802.11be, 80 MHz wide channels
+        *  - `EHT160` - applicable to IEEE 802.11be, 160 MHz wide channels
+        *  - `EHT320` - applicable to IEEE 802.11be, 320 MHz wide channels
         */
        getHTModes: function() {
                var htmodes = this.ubus('dev', 'iwinfo', 'htmodes');

@rmandrad rmandrad force-pushed the 11be branch 3 times, most recently from b9c2e75 to 8b741d1 Compare September 19, 2024 04:59
@rmandrad
Copy link
Copy Markdown
Contributor Author

rmandrad commented Oct 2, 2024

@systemcrash @dannil no problems to date on my end ... and good feedback on the forum

Is there anything you need in order to approve this ?

@dannil
Copy link
Copy Markdown
Contributor

dannil commented Oct 2, 2024

@systemcrash @dannil no problems to date on my end ... and good feedback on the forum

Is there anything you need in order to approve this ?

The formatting is still not correct, I'd at least want that fixed (and it seems that your previous fixed ones has returned as well in some cases), I took some screenshots to show you, it's basically the entire file it's happened in so not worth commenting every single instance. Turn off any automatic formatting you have in your editor and only include your changes.

It makes it very hard to review the PR since a lot of things you haven't directly changed is showing up in the diff.

  • Extra indentations removed, wrongly aligned with curly braces.
    Screenshot_39
    Screenshot_38

danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 2, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
@systemcrash
Copy link
Copy Markdown
Contributor

I concur with @dannil on this one. Where code has not changed, leave indentation untouched.

Tested with banana rpi-4

In order to complete 11be support - the below pulls will need to be applied

RPCD - openwrt/rpcd#5
iwinfo - openwrt/iwinfo#10

Signed-off-by: Rudy Andram <rmandrad@gmail.com>
Tested-By: Daniel Pawlik <pawlik.dan@gmail.com>
@rmandrad
Copy link
Copy Markdown
Contributor Author

rmandrad commented Oct 3, 2024

I will close this pull ... as I don't see any issues from my side ... it seems to only happen when integrating it here

@rmandrad rmandrad closed this Oct 3, 2024
@rmandrad rmandrad deleted the 11be branch October 3, 2024 07:21
@danpawlik
Copy link
Copy Markdown
Contributor

why have you close it @rmandrad ? I agree with the devs, the idention is wrong and it is not a first file that got such issue.
Maybe it is a good time to switch to another tool or just update editor config to not put 8 spaces instead of 4, tab instead of 4 spaces etc (its what I spotted in other commit what you have).
Please reopen this PR and just change editor, that will not do any "strange" changes.

@rmandrad
Copy link
Copy Markdown
Contributor Author

rmandrad commented Oct 3, 2024

I opened a new pull - #7302

hopefully clearing out all of the spaces/tabs previous updates etc

@rmandrad rmandrad mentioned this pull request Oct 3, 2024
10 tasks
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 3, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 3, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 3, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 3, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 5, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 5, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 5, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 5, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 6, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 6, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 7, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 7, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 8, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 16, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
danpawlik added a commit to danpawlik/openwrt that referenced this pull request Oct 16, 2024
The feed repo contains a patch [1].

[1] openwrt/luci#7279

(cherry picked from commit 016c0d0)
@Neustradamus
Copy link
Copy Markdown

Dear all, @rmandrad, @systemcrash, @dannil, @danpawlik, @hnyman,

There is a new PR linked to 11be done by @prokowsoftware here:

Can you look?

Thanks in advance.

@Neustradamus
Copy link
Copy Markdown

@Neustradamus Neustradamus mentioned this pull request Apr 7, 2026
10 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

depends on PR in other repo PR depends on PR in sister repo e.g. openwrt/packags

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants