Changes between Version 50 and Version 51 of expansion/gw16146
- Timestamp:
- 05/02/2024 04:00:11 PM (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
expansion/gw16146
v50 v51 348 348 =================================================== 349 349 }}} 350 * show software/hardware version info:350 * Show software/hardware version info: 351 351 {{{#!bash 352 352 # ./cli_app show version … … 356 356 OK 357 357 }}} 358 * set use of board data for tx power levels and calibration:358 * Set use of board data for tx power levels and calibration: 359 359 {{{#!bash 360 360 # ./cli_app set bdf_use on … … 362 362 OK 363 363 }}} 364 * enable A-MPDU (frame aggregation):364 * Enable A-MPDU (frame aggregation): 365 365 {{{#!bash 366 366 # ./cli_app set maxagg 1 8 … … 381 381 OK 382 382 }}} 383 * set guard band interval to long (or short if you wish)383 * Set guard band interval to long (or short if you wish) 384 384 {{{#!bash 385 385 # ./cli_app set gi long … … 387 387 OK 388 388 }}} 389 * enable RF calibration:389 * Enable RF calibration: 390 390 {{{#!bash 391 391 # ./cli_app set cal_use on … … 411 411 modprobe nrc fw_name=nrc7292_cspi.bin bd_name=nrc7292_bd.dat spi_polling_interval=5 412 412 }}} 413 - after several seconds you should see a new wlan device under /sys/class/net414 c. find the correct wlan interface that is bound to the NRC7292 driver by looking for a devices in /sys/class/net with a SPI based device-driver:413 - After several seconds you should see a new wlan device under /sys/class/net 414 c. Find the correct wlan interface that is bound to the NRC7292 driver by looking for a devices in /sys/class/net with a SPI based device-driver: 415 415 {{{#!bash 416 416 WLAN="$(for i in $(ls -d /sys/class/net/wlan* 2>/dev/null); do if [ -d $i/device/driver/spi* ]; then basename $i; fi; done)" … … 472 472 - for the Command Line App usage details see [https://github.com/Gateworks/nrc7292/blob/master/package/host/doc/UG-7292-007-Commnad%20line%20application.pdf UG-7292-007-Command Line Application.pdf] 473 473 474 3. Configure AP or STAmode:474 3. Configure AP (access point) or STA (station / client) mode: 475 475 * Define your channel and SSID via env variables (used in scripts below) 476 476 {{{#!bash … … 481 481 - For Channel mapping details see: [https://github.com/Gateworks/nrc7292/blob/master/package/host/doc/UG-7292-003-S1G_Channel.pdf UG-7292-003-S1G_Channel.pdf] 482 482 * Open security model: 483 - AP ( using WLAN/SSID/CH env variables)483 - AP (access point) (using WLAN/SSID/CH env variables) 484 484 {{{#!bash 485 485 # apt install hostapd # make sure hostapd is installed … … 509 509 wlan0: AP-ENABLED 510 510 }}} 511 - STA ( using WLAN/SSID env variables)511 - STA (station / client) (using WLAN/SSID env variables) 512 512 {{{#!bash 513 513 # cat << EOF > /tmp/wpa_supplicant.conf … … 552 552 # hostapd /tmp/hostapd.conf & 553 553 }}} 554 - STA ( using WLAN/SSID/PSK env variables)554 - STA (station / client) (using WLAN/SSID/PSK env variables) 555 555 {{{#!bash 556 556 # cat << EOF > /tmp/wpa_supplicant.conf … … 601 601 # hostapd /tmp/hostapd.conf & 602 602 }}} 603 - STA ( using WLAN/SSID/PSK env variables)603 - STA (station / client) (using WLAN/SSID/PSK env variables) 604 604 {{{#!bash 605 605 # cat << EOF > /tmp/wpa_supplicant.conf