Code Monkey home page Code Monkey logo

Comments (6)

Geramy avatar Geramy commented on July 29, 2024

I put code in the driver that tries to load the firmware I believe about 10 times then it stops and crashes, well the solution is to figure out why it cant find the firmware. Maybe you need to recompile the modules for 2.5

from athp.

kiokoman avatar kiokoman commented on July 29, 2024

i found the problem "firmware table full!", google told me to recompile the kernel with incrised #define FIRMWARE_MAX, now it load just fine

from athp.

kiokoman avatar kiokoman commented on July 29, 2024

[2.5.0-DEVELOPMENT][[email protected]]/root: ifconfig athp0_wlan0 mode 11g [2.5.0-DEVELOPMENT][[email protected]]/root: ifconfig athp0_wlan0 mode 11na [2.5.0-DEVELOPMENT][[email protected]]/root: ifconfig athp0_wlan0 mode 11ac ifconfig: SIOCSIFMEDIA (media): Invalid argument

there is no support for 802.11ac ?

from athp.

erikarn avatar erikarn commented on July 29, 2024

I never tested setting the media to 11ac. I always left it up to the channel specification, NOT the mode/media.

from athp.

erikarn avatar erikarn commented on July 29, 2024

Please file a FreeBSD PR about setting the media to 11ac. I'll go make sure it doesn't error out.

from athp.

kiokoman avatar kiokoman commented on July 29, 2024

when i load if_athp.ko this is reported:

athp0: 11a rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
athp0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
athp0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
athp0: 3T3R
athp0: 11na MCS 20MHz
bla bla bla
athp0: MCS 8-15: 30Mbps - 300Mbps
athp0: MCS 16-23: 45Mbps - 450Mbps
**athp0: [VHT] Channel Widths: 20MHz, 40MHz, 80MHz
athp0: [VHT] Features: 338001b2<MPDU11454,RXLDPC,SHORTGI80,RXSTBC1,RXSTBC2>
athp0: [VHT] NSS 1: TX MCS 0..9, RX MCS 0..9**
athp0: [VHT] NSS 2: TX MCS 0..9, RX MCS 0..9
athp0: [VHT] NSS 3: TX MCS 0..9, RX MCS 0..9

this is specs of my card
http://www.sparklan.com/p2-products-detail.php?PKey=05f1PcJhJnAq1DolkcoSJibeSaxmPjpTYdltrQ-f&WPEA-352ACN

11ac ISM Band: 5.150GHz ~ 5.825GHz
802.11ac (HT80)

maybe i'm saying bulshit here but

i can't see any definition of HT80 or VHT inside regdomain.xml
the last netband mode is "11na" there isn't any "11ac" VHT80 VHT80+80 or VHT160

<rd id="fcc">
  <name>FCC</name>
  <sku>0x10</sku>
  <defcc ref="US"/>
  <netband mode="11b">
    <band>
      <freqband ref="F1_2412_2462"/>
      <maxpower>30</maxpower>
      <flags>IEEE80211_CHAN_B</flags>
    </band>
  </netband>
  <netband mode="11g">
    <band>
      <freqband ref="F1_2412_2462"/>
      <maxpower>30</maxpower>
      <flags>IEEE80211_CHAN_G</flags>
    </band>
  </netband>
  <netband mode="11a">
    <band>
      <freqband ref="F1_5180_5240"/>
      <maxpower>17</maxpower>
    </band>
    <band>
      <freqband ref="F1_5745_5805"/>
      <maxpower>23</maxpower>
    </band>
    <band>
      <freqband ref="F1_5825_5825"/>
      <maxpower>23</maxpower>
      <flags>IEEE80211_CHAN_PASSIVE</flags>
    </band>
  </netband>
  <netband mode="11ng">
    <band>
      <freqband ref="F1_2412_2462"/>
      <maxpower>30</maxpower>
      <flags>IEEE80211_CHAN_G</flags>
      <flags>IEEE80211_CHAN_HT20</flags>
    </band>
    <band>
      <freqband ref="H4_2412_2462"/>
      <maxpower>30</maxpower>
      <flags>IEEE80211_CHAN_G</flags>
      <flags>IEEE80211_CHAN_HT40</flags>
    </band>
  </netband>
  <netband mode="11na">
    <band>
      <freqband ref="F1_5180_5240"/>
      <maxpower>17</maxpower>
      <flags>IEEE80211_CHAN_HT20</flags>
    </band>
    <band>
      <freqband ref="H4_5180_5240"/>
      <maxpower>17</maxpower>
      <flags>IEEE80211_CHAN_HT40</flags>
    </band>
    <band>
      <freqband ref="F1_5745_5805"/>
      <maxpower>23</maxpower>
      <flags>IEEE80211_CHAN_HT20</flags>
    </band>
    <band>
      <freqband ref="H4_5745_5805"/>
      <maxpower>23</maxpower>
      <flags>IEEE80211_CHAN_HT40</flags>
    </band>
  </netband>
</rd>

this is under my linux server:

kiokoman@nanto:/lib/crda$` regdbdump regulatory.bin
country US: DFS-FCC
(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
        (2402.000 - 2472.000 @ 40.000), (30.00), (N/A)
        (5170.000 - 5250.000 @ 80.000), (23.00), (N/A), AUTO-BW
        (5250.000 - 5330.000 @ 80.000), (23.00), (N/A), DFS, AUTO-BW
        (5490.000 - 5730.000 @ 160.000), (23.00), (N/A), DFS
        (5735.000 - 5835.000 @ 80.000), (30.00), (N/A)
        (57240.000 - 63720.000 @ 2160.000), (40.00), (N/A)

from athp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.