Added SDT by mops1k

https://github.com/mops1k/steam-deck-tools

Removed Equalize and ShareX due to unnecessary
This commit is contained in:
AN
2025-03-18 16:44:04 +02:00
parent 4d4f705da4
commit 18983ea253
191 changed files with 1889 additions and 1890 deletions
File diff suppressed because it is too large Load Diff
Binary file not shown.

After

Width:  |  Height:  |  Size: 436 KiB

BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+49
View File
@@ -0,0 +1,49 @@
Must-have things for your Windows Steam Deck.
[ Drivers - LCD]
- Video Driver - Valve: November-2023
- Audio Driver - Valve: October-2022
- Wi-Fi driver - Valve: March-2022
- Bluetooth driver - Microsoft Update
- SD Card reader driver - Microsoft Update
[ Drivers - OLED]
- Video Driver - Valve: August-2024
- Audio Driver - Valve: September-2022
- Wi-Fi driver - Valve: August-2024
- Bluetooth driver - Valve: August-2024
- SD Card reader driver - Valve: March-2022
[ Microsoft Visual C++ ]
- Visual C++ modules for game and application compatibility.
- Version: 0.83.0
[ Microsoft DirectX ]
- A collection of application programming interfaces (APIs) for game compatibility.
[ Dot NET ]
- Software framework developed by Microsoft that runs primarily on Microsoft Windows.
- Version: 6.0.425
[ Rivatuner Statistics Server (RTSS) ]
- Tool for frame rate monitoring, on-screen display, and high-performance video capturing. Required for 'Steam Deck Tools'.
- Version: 7.3.4
[ AMD Adrenalin ]
- Powerful tool for AMD video cards that allows you to adjust GPU scaling, Image Sharpening, Color Correction etc.
- Version: 23.40.33
[ Custom Resolution Utility ]
- Software tool to create custom resolutions, refresh rates and monitor timings for graphics cards. Required to unlock screen resolutions on Steam Deck.
- Version: 1.5.2
[ Steam Deck Tools ]
- Software suite for Steam Deck that includes Fan Control, Performance Overlay, Power Control and Steam Controller functionality.
- Version: 0.7.3
[ Disable Hibernation ]
- Disable Hibernation mode. Waking up from hibernate may cause the BSOD on Steam Deck.
[ Set UTC Internal Clock ]
- Change Windows clock to UTC. In case of dual boot, Windows and Linux write to the hardware clock in different ways.
+50
View File
@@ -0,0 +1,50 @@
Маст-хэв вещи для вашей Windows Steam Deck.
[ Драйверы - LCD]
- Видео драйвер - Valve: November-2023
- Драйвер звука - Valve: October-2022
- Wi-Fi драйвер - Valve: March-2022
- Bluetooth драйвер - Microsoft Update
- Драйвер считывателя карты - Microsoft Update
[ Драйверы - OLED]
- Видео драйвер - Valve: August-2024
- Драйвер звука - Valve: September-2022
- Wi-Fi драйвер - Valve: August-2024
- Bluetooth драйвер - Valve: August-2024
- Драйвер считывателя карты - Valve: March-2022
[ Microsoft Visual C++ ]
- Набор модулей для работы с играми и приложениями, написанных на Visual C++.
- Версия: 0.83.0
[ Microsoft DirectX ]
- Набор API для работы с играми и приложениями под Windows.
[ Dot NET ]
- Платформа, которая поддерживает создание и выполнение приложений Windows.
- Версия: 6.0.425
[ RivaTuner Statistics Server (RTSS) ]
- Утилита для мониторинга и отображения на экране FPS и других аппаратных значений. Требуется для работы "Steam Deck Tools".
- Версия: 7.3.4
[ AMD Adrenalin ]
- Мощный инструмент для видеокарт AMD, позволяющий настраивать масштабирование, резкость изображения, коррекцию цвета и т.д.
- Версия: 23.40.33
[ Custom Resolution Utility ]
- Утилита для создания пользовательских разрешений экрана, частоты обновления и таймингов монитора. Требуется для работы "Steam Deck Tools".
- Версия: 1.5.2
[ Steam Deck Tools ]
- Набор программ для Steam Deck, который включает функции управления вентилятором, наложения производительности, управления питанием и контроллера Steam.
- Версия: 0.7.3
[ Выкл. гибернацию ]
- Выключение режима гибернации. Выход из гибернации может вызывать BSOD (синий экран) на Steam Deck.
[ Установка часов в UTC ]
- Меняем часы Windows на UTC. В случае dualboot Windows и Llinux по-разному записывают аппаратное время.
+2
View File
@@ -0,0 +1,2 @@
[autorun]
OPEN=setup.exe
+5
View File
@@ -0,0 +1,5 @@
@echo off
PUSHD %CD%
cd /d %~dp0
Setup.exe /s /f2"c:\setup.log"
popd
@@ -0,0 +1,102 @@
@echo off
CLS
setlocal enabledelayedexpansion
:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
pushd "%CD%"
CD /D "%~dp0"
if %PROCESSOR_ARCHITECTURE%==AMD64 (
set var=Win10x64
set arch=x64
)
if %PROCESSOR_ARCHITECTURE%==x86 (
set var=Win10x86
set arch=x86
)
cd..
xcopy /y "Win10\%arch%" "%temp%\%var%\" /s /e /i
xcopy /y "%var%" "%temp%\%var%\" /s /e /i
xcopy /y "Win10Install" "%temp%\Win10Install\*.*" /s /e /i
echo %~dp0> "%temp%\batchfilelocation.txt"
CLS
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\RtlAdmin.vbs"
set params = %*:"=""
echo UAC.ShellExecute "cmd.exe", "/c %temp%\Win10Install\Install.cmd %params%", "", "runas", 1 >> "%temp%\RtlAdmin.vbs"
"%temp%\RtlAdmin.vbs"
popd
exit /B
:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
:--------------------------------------
echo **************************************************************
echo *** Batch Install Realtek Wireless LAN Driver
echo ***
echo *** Please wait a moment
echo=
if %PROCESSOR_ARCHITECTURE%==AMD64 (
set var=Win10x64
set arch=x64
)
if %PROCESSOR_ARCHITECTURE%==x86 (
set var=Win10x86
set arch=x86
)
cd..
set RTWLAN_DRV=%CD%
if NOT exist "%temp%\RtlAdmin.vbs" (
if exist "Win10\%arch%" (
xcopy /y "Win10\%arch%" "%var%" /q /s /e /i
type nul > "%temp%\copyfrombuildfolder.txt"
)
)
cd %var%
set logfile="%temp%\Installation_Log.txt"
echo ----- %date% %time% ----- Installation BEGIN > %logfile%
pnputil /add-driver "netrtwlane.inf" /install >> %logfile%
echo ----- %date% %time% ----- Installation END >> %logfile%
type %logfile%
set /p logpath=<"%temp%\batchfilelocation.txt"
if exist "%temp%\batchfilelocation.txt" (
mkdir "%logpath%Log"
copy /y "%logfile%" "%logpath%Log\Installation_Log.txt"
del "%temp%\batchfilelocation.txt"
) else (
mkdir "%~dp0Log"
copy /y "%logfile%" "%~dp0Log\Installation_Log.txt"
)
popd
echo=
echo **************************************************************
echo *** Driver Install Finished
echo=
pause
del "%logfile%"
if NOT exist "%temp%\RtlAdmin.vbs" (
if exist "%temp%\copyfrombuildfolder.txt" (
rd /s /q "%RTWLAN_DRV%\%var%"
del "%temp%\copyfrombuildfolder.txt"
)
)
if exist "%temp%\RtlAdmin.vbs" (
del "%temp%\RtlAdmin.vbs"
rd /s /q "%temp%\Win10Install"
rd /s /q "%temp%\%var%"
)
@@ -0,0 +1,153 @@
@echo off
CLS
setlocal enabledelayedexpansion
:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
pushd "%CD%"
CD /D "%~dp0"
if %PROCESSOR_ARCHITECTURE%==AMD64 (
set var=Win10x64
set arch=x64
)
if %PROCESSOR_ARCHITECTURE%==x86 (
set var=Win10x86
set arch=x86
)
cd..
xcopy /y "Win10\%arch%" "%temp%\%var%\" /s /e /i
xcopy /y "%var%" "%temp%\%var%\" /s /e /i
xcopy /y "Win10Install" "%temp%\Win10Install\*.*" /s /e /i
echo %~dp0> "%temp%\batchfilelocation.txt"
CLS
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\RtlAdmin.vbs"
set params = %*:"=""
echo UAC.ShellExecute "cmd.exe", "/c %temp%\Win10Install\Uninstall.cmd %params%", "", "runas", 1 >> "%temp%\RtlAdmin.vbs"
"%temp%\RtlAdmin.vbs"
popd
exit /B
:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
:--------------------------------------
echo **************************************************************
echo *** Batch Uninstall Realtek Wireless LAN Driver
echo ***
echo *** Please wait a moment
echo=
if %PROCESSOR_ARCHITECTURE%==AMD64 (
set var=Win10x64
set tools=x64
)
if %PROCESSOR_ARCHITECTURE%==x86 (
set var=Win10x86
set tools=x86
)
cd..
set RTWLAN_DRV=%CD%
if NOT exist "%temp%\RtlAdmin.vbs" (
if exist "Win10\%tools%" (
xcopy /y "Win10\%tools%" "%var%" /q /s /e /i
type nul > "%temp%\copyfrombuildfolder.txt"
)
)
cd %var%
set Drivers=%CD%
cd /d %~dp0
cd %tools%
set logfile="%temp%\Uninstallation_Log.txt"
echo ----- %date% %time% ----- Uninstallation BEGIN > %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_8753*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_B723*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_8179*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_8812*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_8821*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_818B*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_818C*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_B822*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_B814*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_B821*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_C821*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_C82B*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_8813*" >> %logfile%
devcon.exe remove "@PCI\VEN_10EC&DEV_D723*" >> %logfile%
dpinst.exe /Q /D /U "%Drivers%\netrtwlane.inf" >> %logfile%
REM ---> Add delete all netrtwlane.inf here
chcp 65001
set GetVersion=Disable
set deleteDriver=Disable
set RTPublishedName=NULL
FOR /f "tokens=2,3,4 delims=: " %%I IN ('pnputil /enum-drivers') do (
set PublishedName=!OriginalName!
set OriginalName=%%J
if "!OriginalName!"=="netrtwlane.inf" (
call set RTPublishedName=!PublishedName!
echo ---^> >> %logfile%
echo !PublishedName! >> %logfile%
call set GetVersion=Enable
)
if "%%I"=="Version" (
if "!GetVersion!"=="Enable" (
echo Driver Version: %%J %%K >> %logfile%
call set GetVersion=Disable
call set deleteDriver=Enable
)
)
if "!deleteDriver!"=="Enable" (
pnputil /delete-driver !RTPublishedName! >> %logfile%
call set deleteDriver=Disable
echo ^<--- >> %logfile%
)
)
REM ---> Add delete all netrtwlane.inf Finish
devcon.exe rescan >> %logfile%
echo ----- %date% %time% ----- Uninstallation END >> %logfile%
type %logfile%
set /p logpath=<"%temp%\batchfilelocation.txt"
if exist "%temp%\batchfilelocation.txt" (
mkdir "%logpath%Log"
copy /y "%logfile%" "%logpath%Log\Uninstallation_Log.txt"
del "%temp%\batchfilelocation.txt"
) else (
mkdir "%~dp0Log"
copy /y "%logfile%" "%~dp0Log\Uninstallation_Log.txt"
)
popd
echo=
echo **************************************************************
echo *** Driver Uninstall Finished
echo ***
echo *** Please restart your unit after installation finished
echo=
pause
del "%logfile%"
if NOT exist "%temp%\RtlAdmin.vbs" (
if exist "%temp%\copyfrombuildfolder.txt" (
rd /s /q "%RTWLAN_DRV%\%var%"
del "%temp%\copyfrombuildfolder.txt"
)
)
if exist "%temp%\RtlAdmin.vbs" (
del "%temp%\RtlAdmin.vbs"
rd /s /q "%temp%\Win10Install"
rd /s /q "%temp%\%var%"
)
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,258 @@
##########Realtek WLAN Driver Install Package##################
Language Support
1->English 2->Basque 3->Bulgarian 4->Catalan 5->Simple Chinese 6->Traditional Chinese 7->Croatian 8->Czech 9->Danish 10->Dutch
11->Finish 12->French(Canada) 13->French(France) 14->German 15->Greek 16->Hungarian 17->Indonesian 18->Italian 19->Japanese
20->Korean 21->Norwegian 22->Polish 23->Portuguese(Brazil) 24->Portuguese(Portugal) 25->Romanian 26->Russian 27->Serbian(Cyrillic)
28->Slovak 29->Slovenian 30->Spanish 31->Swedish 32->Thai 33->Turkish
-- How to install:
1. Enter the directory and run setup.exe.
2. Follow the prompt and restart the system.
--How to Silent Install:
1. Enter the directory and run setup.exe /s -f2"c:\setup.log" under command line.
2. Or execute silent install Batch file.
-- How to Silent un-install:
1. Enter the directory and run Setup.exe -uninst -s -f1"(Uninstall.iss Path)" -f2"c:\setup.log" under command line.
p.s. The (Uninstall.iss Path) is the full path of the file “Uninstall.iss”.
For example , the full path of Uninstall.iss is “c:\Realtek\11n USB WLAN Card” .The command will become
Setup.exe -uninst -s -f1"(Uninstall.iss Path)" -f2"c:\setup.log"
2. Or execute silent uninstall Batch file.
-- How to confirm driver version:
1. Right click computer->Manage->Device Manager.
2. Right click the Device Properties->Driver
########################################################
Release Note:
########################################################
InstallShield Drv V3.00.0001 (2016/04/26) By Karl_Hsu
New [APP]
FindRtl: V1.00.412.2016 (By Karl_Hsu)
Quick find support Realtek card to complete the Driver .inf input output FindRtl.ini.
SetDrvAll: V1.00.422.2016 (By Karl_Hsu)
Support check unplug or plug in card installation, support WinXP ~ Win10 OS
Install [Protocol Driver]
Eappkt: V500.1001.802.2007 for WinXP
[Script_Functions]
All New.(By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0001 (2016/04/28) By Karl_Hsu
UpDate [APP]
SetDrvAll: V1.02.428.2016 (By Karl_Hsu)
[Script_Functions]
Add delete "Realtek" folder .(By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0001 (2016/05/03) By Karl_Hsu
[Script_Functions]
UI with modifications "WlanUI".(By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0002 (2016/06/01) By Karl_Hsu
UpDate [APP]
SwUSB (XP_Win8) : V500.1033.530.2016 (By Karl_Hsu)
Fix USB mode switch service stop work issues.
[Script_Functions]
Support install/remove external power limit table files.(By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0003 (2016/06/30) By Karl_Hsu
UpDate [APP]
SwUSB (XP_Win8) : V500.1034.630.2016 (By Karl_Hsu)
Fix Sometimes did not do ReLinkProfile in Switch USB2.0/USB3.0 mode Process.
#########################################################
InstallShield Drv V3.00.0004 (2016/07/04) By Karl_Hsu
[Script_Functions]
If InstallCiscoEAP or Install_IHV_Extensions is displayed Yes/No Reboot.(By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0005 (2016/07/27) By Karl_Hsu
UpDate [APP]
FindRtl: V1.2.724.2016 (By Karl_Hsu)
SetDrvAll: V1.3.724.2016 (By Karl_Hsu)
Detect Devices do not need to find matching "&REV_<Hardware version ID>".
#########################################################
InstallShield Drv V3.00.0006 (2016/08/3) By Karl_Hsu
[Script_Functions]
Delete Old ISS InstallShield.
#########################################################
InstallShield Drv V3.00.0007 (2016/08/29) By Karl_Hsu
[Script_Functions]
Package use customized setup.ico Bug Fixes.
#########################################################
InstallShield Drv V3.00.0008 (2016/08/31) By Karl_Hsu
[Script_Functions]
Setup.icon did not put the time, the default icon is displayed.
#########################################################
InstallShield Drv V3.00.0009 (2016/10/13) By Karl_Hsu
add change the work path variable in batch file.
#########################################################
InstallShield Drv V3.00.0010 (2016/10/31) By Karl_Hsu
[Script_Functions]
Fix Eappkt protocol does not start in WinXP OS.
UpDate [APP]
SwUSB (XP_Win8) : V500.1035.1031.2016 (By Karl_Hsu)
Modify Query OID_802_3_CURRENT_ADDRES use too small Buffer Length in WinXP OS.
#########################################################
InstallShield Drv V3.00.0011 (2016/11/08) By Karl_Hsu
[Script_Functions]
Fix can not update Wlan Driver issue because RtlWlanU inbox driver error automatically installed in the USB Composite Device in Win10 Rs1 system.
UpDate [APP]
FindRtl: V1.03.1108.2016 (By Karl_Hsu)
SetDrvAll: V1.004.1107.2016 (By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0012 (2016/11/18) By Karl_Hsu
[Script_Functions]
Uninstall:Modify the time to stop and start SwUSB.
UpDate [APP]
SwUSB (XP_Win8) : V500.1036.1111.2016 (By Karl_Hsu)
Increase check card removal status at initialization Process.
#########################################################
InstallShield Drv V3.00.0013 (2016/11/30) By Karl_Hsu
UpDate [APP]
SwUSB (XP_Win8) : V500.1037.1130.2016 (By Karl_Hsu)
Fixes sometimes crash when exiting.
#########################################################
InstallShield Drv V3.00.0014 (2016/12/09) By Karl_Hsu
UpDate [APP]
SwUSB (XP_Win8) : V500.1038.1209.2016 (By Karl_Hsu)
Fixes a crash when a thread exits.
#########################################################
InstallShield Drv V3.00.0015 (2017/05/24) By Karl_Hsu
UpDate [APP]
FindRtl: V1.04.502.2017 (By Karl_Hsu)
SetDrvAll: V1.6.524.2017 (By Karl_Hsu)
1. Fixed when (EnumDeviceInfo size > 100) did not install the problem.
2. Fixed No card installed new driver problem when the Plug in the device card with the Inbox driver normal, And then remove the card.
#########################################################
InstallShield Drv V3.00.0016 (2017/06/05) By Karl_Hsu
UpDate [APP]
SetDrvAll: V1.7.605.2017 (By Karl_Hsu)
1. Fixed Some platforms will crash when no card is installed.
#########################################################
InstallShield Drv V3.00.0017 (2017/06/07) By Karl_Hsu
UpDate [APP]
SetDrvAll: V1.8.607.2017 (By Karl_Hsu)
1. The modification processing does not insert the card to update the Inbox driver.
#########################################################
InstallShield Drv V3.00.0018 (2017/07/18) By Karl_Hsu
UpDate [APP]
SetDrvAll: V1.9.718.2017 (By Karl_Hsu)
1. Fixed Some platforms remove the Driver failed when Uninstall.
#########################################################
InstallShield Drv V3.00.0019 (2017/10/17) By Karl_Hsu
[Script_Functions]
1.Implement Extension INF install/remove. (By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0020 (2018/01/04) By Karl_Hsu
UpDate [APP]
SwUSB (XP_Win10) : V500.1039.104.2018 (By Karl_Hsu)
1.Add check Switch mode fail and Retry Switch mode.
#define MAX_RetryCount 2
#########################################################
InstallShield Drv V3.00.0021 (2018/01/12) By Karl_Hsu
[Script_Functions]
1.Support multiple Extension INF install/remove. (By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0022 (2018/01/17) By Karl_Hsu
[Script_Functions]
1. The modification multiple Extension INF install/remove. (By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0023 (2018/01/18) By Karl_Hsu
[Script_Functions]
1. The modification multiple Extension remove flow. (By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0024 (2018/02/02) By Karl_Hsu
UpDate [APP]
runSW : V1.1006.202.2018 (By Karl_Hsu)
1.Fix SwUSB shutdown issue during Quick Start system (Shutdown -> Startup).
#########################################################
InstallShield Drv V3.00.0025 (2018/03/23) By Karl_Hsu
[Script_Functions]
Fix if User Manually Used Pnputil.exe to Install Driver Cannot Completely Remove.
#########################################################
InstallShield Drv V3.00.0026 (2018/03/26) By Karl_Hsu
[Script_Functions]
Fix Incorrect change of Driver Path name to service name.
#########################################################
InstallShield Drv V3.00.0027 (2018/04/03) By Karl_Hsu
UpDate [APP]
SwUSB (XP_Win10) : V500.1040.403.2018 (By Karl_Hsu)
1.Modified to Win10_RS3 1709 (16299.248) ~ Win10_RS3 1709 (16299.39X) OS BUG,
Sometimes unable to KYE Win +X /I 。
#########################################################
InstallShield Drv V3.00.0028 (2018/04/26) By Karl_Hsu
UpDate [APP]
SetDrvAll: V1.10.425.2018 (By Karl_Hsu)
1. Modified Extension INF remove flow.
[Script_Functions]
1. The modification multiple Extension remove flow. (By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0029 (2018/04/26) By Karl_Hsu
[Script_Functions]
Modify whether to remove Cisco 802.1x processing. (By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0030 (2018/05/28) By Karl_Hsu
UpDate [APP]
SwUSB (XP_Win10) : V500.1041.524.2018 (By Karl_Hsu)
1.Add Chack U2U3 Switch mode when the client has completed roaming to the new AP。
#########################################################
InstallShield Drv V3.00.0031 (2018/08/07) By Karl_Hsu
UpDate [APP]
SetDrvAll: V1.11.807.2018 (By Karl_Hsu)
1. Fixed issue of installing twice because of Matching two DeviceIds.
#########################################################
InstallShield Drv V3.00.0032 (2019/06/12) By Karl_Hsu
[Script_Functions]
1.Fixed an issue where the Wlan driver could not be updated because the RtlWlanU inbox driver INF error was automatically installed on the Win10 Rs5 system.
2.Add a change logo to display in the dialog. (put in the logo.bmp file)
#########################################################
InstallShield Drv V3.00.0033 (2019/08/08) By Karl_Hsu
UpDate [APP]
runSW : V1.1007.808.2019 (By Karl_Hsu)
1.Fix missing CloseHandle .
#########################################################
InstallShield Drv V3.00.0034 (2019/08/27) By Karl_Hsu
UpDate [APP]
SetDrvAll: V1.12.827.2019 (By Karl_Hsu)
#########################################################
InstallShield Drv V3.00.0035 (2019/12/10) By Karl_Hsu
Build tool:
InstallShield 2014 upgrades InstallShield 2019 for some CVE security issues.
#########################################################
InstallShield Drv V3.00.0036 (2020/8/18) By Karl_Hsu
[Script_Functions]
Support to delete the device normally when uninstalling the WLAN driver of Win10 (build19041.329) OS.
#########################################################
@@ -0,0 +1,67 @@
CoexVersion : Current Coex Version
DesiredBtFwVersion : Desired BT FW Version
WiFiBtCoexType : Date_CoexVersion_DesiredBtFwVersion
8192e1Ant : 20140527_0x4f
8192e2Ant : 20171130_0x3c_0x03
8703b1Ant : 20180330_0x1e_0x1c
8723b1Ant : 20181002_0x70_0x6d
8723b2Ant : 20180205_0x52_0x50
8723d1Ant : 20200916_0x342_0x33
8723d2Ant : 20200916_0x362_0x35
8812a1Ant : 20140708_0x52
8812a2Ant : 20160921_0x37_0x01
8814a2Ant : 20170113_0x04_0x03
8814b1Ant : 20161014_0x2f_0x28
8814b2Ant : 20161014_0x2f_0x28
8821a1Ant : 20171024_0x6c_0x62
8821a2Ant : 20180614_0x6e_0x5c
8821c1Ant : 20210622_0x499_0x54
8821c2Ant : 20210622_0x499_0x54
8822b1Ant : 20200730_0x783_0x7e
8822b2Ant : 20191216_0x78_0x75
********************************************
IC Type : FW version
********************************************
FW_Ver_8188F : 4.1
FW_Ver_8192E : 35.5
FW_Ver_8192F : 5.0
FW_Ver_8703B : 6.2
FW_Ver_8723B : 41.9
FW_Ver_8723D : 49.1
FW_Ver_8812A : 52.12
FW_Ver_8814A : 33.2
FW_Ver_8814B : 0.0
FW_Ver_8821A : 42.3
FW_Ver_8821C : 23.27
FW_Ver_8822B : 30.20
FW_Ver_8822C : 7.28
********************************************
IC Type : PHY version
********************************************
PHY_Ver_8188e : 71
PHY_Ver_8188f : 38
PHY_Ver_8192e : 61
PHY_Ver_8192f : 46
PHY_Ver_8195b : 46
PHY_Ver_8197f : 72
PHY_Ver_8197g : 0
PHY_Ver_8198f : 32
PHY_Ver_8703b : 18
PHY_Ver_8710b : 18
PHY_Ver_8710c : 0
PHY_Ver_8721d : 0
PHY_Ver_8723b : 29
PHY_Ver_8723d : 40
PHY_Ver_8812a : 57
PHY_Ver_8812f : 0
PHY_Ver_8814a : 110
PHY_Ver_8814b : 35
PHY_Ver_8821a : 59
PHY_Ver_8821c : 60
PHY_Ver_8822b : 115
PHY_Ver_8822c : 39
********************************************
IC Type : HALMAC version
********************************************
HALMAC_ver : .. pathch:
Binary file not shown.
+6
View File
@@ -0,0 +1,6 @@
@echo off
set ISSPath=%~dp0\Uninstall.iss
PUSHD %CD%
cd /d %~dp0
setup.exe /UNINST /removeonly /s /f1"%ISSPath%" /f2"c:\setup.log"
popd
+10
View File
@@ -0,0 +1,10 @@
[{088E51C3-6578-411F-B4E9-6119051CB135}-DlgOrder]
Dlg0={088E51C3-6578-411F-B4E9-6119051CB135}-SprintfBox-0
Count=2
Dlg1={088E51C3-6578-411F-B4E9-6119051CB135}-SdFinish-0
[{088E51C3-6578-411F-B4E9-6119051CB135}-SprintfBox-0]
Result=1
[{088E51C3-6578-411F-B4E9-6119051CB135}-SdFinish-0]
Result=1
bOpt1=0
bOpt2=0
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

+15
View File
@@ -0,0 +1,15 @@
[{088E51C3-6578-411F-B4E9-6119051CB135}-DlgOrder]
Dlg0={088E51C3-6578-411F-B4E9-6119051CB135}-SdFinishReboot-0
Count=1
Dlg1={088E51C3-6578-411F-B4E9-6119051CB135}-SdFinish-0
[{088E51C3-6578-411F-B4E9-6119051CB135}-SprintfBox-0]
Result=1
[{088E51C3-6578-411F-B4E9-6119051CB135}-SdFinish-0]
Result=1
bOpt1=0
bOpt2=0
[Application]
Version=3.00.0036
[{088E51C3-6578-411F-B4E9-6119051CB135}-SdFinishReboot-0]
Result=1
BootOption=0
@@ -0,0 +1 @@
Qualcomm Technologies, Inc. has chosen to take BSD license subject to the alternative licensing options license and terms
+453
View File
@@ -0,0 +1,453 @@
This Notice.txt file contains certain notices of software components included with the software that Qualcomm Atheros, Inc. (“Qualcomm Atheros”) is required to provide you. Except where prohibited by the open source license, the content of this notices file is only provided to satisfy Qualcomm Atheros's attribution and notice requirement; your use of these software components together with the Qualcomm Atheros software (Qualcomm Atheros software hereinafter referred to as “Software”) is subject to the terms of your agreement from Qualcomm Atheros. Compliance with all copyright laws and software license agreements included in the notice section of this file are the responsibility of the user. Except as may be granted by separate express written agreement, this file provides no license to any patents, trademarks, copyrights, or other intellectual property of Qualcomm Incorporated or any of its subsidiaries.
Qualcomm is a trademark of Qualcomm Incorporated, registered in the United States and other countries. All Qualcomm Incorporated trademarks are used with permission. Other products and brand names may be trademarks or registered trademarks of their respective owners.
Notices
=============================================================================
/*
* Copyright (c) 2018-2019 Qualcomm Technologies, Inc.
* 2014 Qualcomm Atheros, Inc.
* All Rights Reserved.
* Confidential and Proprietary - Qualcomm Technologies, Inc.
*
* Copyright (c) 2008 Atheros Communications Inc.
* All Rights Reserved.
*/
/*-
* Copyright (c) 2001 Atsushi Onoe
* Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* Alternatively, this software may be distributed under the terms of the
* GNU General Public License ("GPL") version 2 as published by the Free
* Software Foundation.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
Qualcomm Technologies, Inc. has chosen to take WLAN host driver subject to the BSD license and terms.
host/umac/mlme/ieee80211_mgmt_bss.c
/*
* Copyright (c) 2011 Qualcomm Atheros, Inc.
* All Rights Reserved.
* Qualcomm Atheros Confidential and Proprietary.
* Notifications and licenses are retained for attribution purposes only.
*/
/*-
* Copyright (c) 2001 Atsushi Onoe
* Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* Alternatively, this software may be distributed under the terms of the
* GNU General Public License ("GPL") version 2 as published by the Free
* Software Foundation.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $FreeBSD: src/sys/net80211/ieee80211_ioctl.h,v 1.8 2004/12/31 22:42:38 sam Exp $
*/
Qualcomm Technologies, Inc. has chosen to take WLAN host driver subject to the BSD license and terms.
host/os/win_wdi/include/ieee80211_ioctl.h
/*
* Copyright (c) 2011 Qualcomm Atheros, Inc.
* All Rights Reserved.
* Qualcomm Atheros Confidential and Proprietary.
*/
/*
* P2P Protocol ie operation.
*/
/*
* wpa_supplicant/hostapd / common helper functions, etc.
* Copyright (c) 2002-2007, Jouni Malinen <j@w1.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Alternatively, this software may be distributed under the terms of BSD
* license.
*
* See README and COPYING for more details.
*/
Qualcomm Technologies, Inc. has chosen to take WLAN host driver subject to the BSD license and terms.
host/umac/p2p/ieee80211_p2p_ie.h
/*
* Copyright (c) 2011-2014, 2019-2020 Qualcomm Technologies, Inc.
* 2011-2014 Qualcomm Atheros, Inc.
* All Rights Reserved.
* Confidential and Proprietary - Qualcomm Technologies, Inc.
*
*/
/*
* Copyright (c) 2008, Jouni Malinen <j@w1.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Alternatively, this software may be distributed under the terms of BSD
* license.
*
* See README and COPYING for more details.
*/
Qualcomm Technologies, Inc. has chosen to take WLAN host driver subject to the BSD license and terms.
host/umac/p2p/ieee80211_p2p_ie.c
/*
* Copyright (c) 2011-2014, 2017-2018 Qualcomm Technologies, Inc.
* 2011-2014 Qualcomm Atheros, Inc.
* All Rights Reserved.
* Confidential and Proprietary - Qualcomm Technologies, Inc.
*
* Copyright (c) 2005-2011 Atheros Communications, Inc.
* All rights reserved.
*/
/*
* Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* $FreeBSD: release/9.0.0/sys/dev/ath/ath_hal/ah_regdomain/ah_rd_regenum.h 224226 2011-07-20 12:46:58Z adrian $
*/
host_cmn/wlan/regdmn/ol_regdomain_common.h
/*
* Copyright (c) 2011 Qualcomm Atheros, Inc.
* All Rights Reserved.
* Qualcomm Atheros Confidential and Proprietary.
* Notifications and licenses are retained for attribution purposes only.
*/
/*-
* Copyright (c) 2002-2005 Sam Leffler, Errno Consulting, Atheros
* Communications, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that the following conditions are met:
* 1. The materials contained herein are unmodified and are used
* unmodified.
* 2. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following NO
* ''WARRANTY'' disclaimer below (''Disclaimer''), without
* modification.
* 3. Redistributions in binary form must reproduce at minimum a
* disclaimer similar to the Disclaimer below and any redistribution
* must be conditioned upon including a substantially similar
* Disclaimer requirement for further binary redistribution.
* 4. Neither the names of the above-listed copyright holders nor the
* names of any contributors may be used to endorse or promote
* product derived from this software without specific prior written
* permission.
*
* NO WARRANTY
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT,
* MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
* FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGES.
*
*/
Qualcomm Technologies, Inc. has chosen to take WLAN host driver subject to the BSD license and terms.
host/hal/ah_desc.h
host/hal/ah_devid.h
/*
* Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
Qualcomm Technologies, Inc. has chosen to take WLAN host driver subject to the BSD license and terms.
host/umac/mlme/ieee80211_mlme_ap.c
/*
* Copyright (c) 2011-2014, 2017-2018 Qualcomm Technologies, Inc.
* 2011-2014 Qualcomm Atheros, Inc.
* All Rights Reserved.
* Confidential and Proprietary - Qualcomm Technologies, Inc.
*/
/*
* Copyright (c) 2005-2006, 2010 Atheros Communications, Inc.
* All Rights Reserved.
*
* Copyright (c) 2002-2006 Sam Leffler, Errno Consulting
*
* Redistribution and use in source and binary forms are permitted
* provided that the following conditions are met:
* 1. The materials contained herein are unmodified and are used
* unmodified.
* 2. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following NO
* ''WARRANTY'' disclaimer below (''Disclaimer''), without
* modification.
* 3. Redistributions in binary form must reproduce at minimum a
* disclaimer similar to the Disclaimer below and any redistribution
* must be conditioned upon including a substantially similar
* Disclaimer requirement for further binary redistribution.
* 4. Neither the names of the above-listed copyright holders nor the
* names of any contributors may be used to endorse or promote
* product derived from this software without specific prior written
* permission.
*
* NO WARRANTY
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT,
* MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
* FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGES.
*/
Qualcomm Technologies, Inc. has chosen to take WLAN host driver subject to the BSD license and terms.
host_cmn/wlan/regdmn/ol_regdomain.c
/*
* Copyright (c) 2011-2014, 2017-2018 Qualcomm Technologies, Inc.
* 2011-2014 Qualcomm Atheros, Inc.
* All Rights Reserved.
* Confidential and Proprietary - Qualcomm Technologies, Inc.
*/
/*
* Copyright (c) 2005-2006, 2010 Atheros Communications, Inc.
* All Rights Reserved.
*
* Copyright (c) 2002-2006 Sam Leffler, Errno Consulting
*
* Redistribution and use in source and binary forms are permitted
* provided that the following conditions are met:
* 1. The materials contained herein are unmodified and are used
* unmodified.
* 2. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following NO
* ''WARRANTY'' disclaimer below (''Disclaimer''), without
* modification.
* 3. Redistributions in binary form must reproduce at minimum a
* disclaimer similar to the Disclaimer below and any redistribution
* must be conditioned upon including a substantially similar
* Disclaimer requirement for further binary redistribution.
* 4. Neither the names of the above-listed copyright holders nor the
* names of any contributors may be used to endorse or promote
* product derived from this software without specific prior written
* permission.
*
* NO WARRANTY
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT,
* MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
* FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGES.
*/
Qualcomm Technologies, Inc. has chosen to take WLAN host driver subject to the BSD license and terms.
host_cmn/wlan/regdmn/ol_regdomain.c
host_cmn/wlan/regdmn/ol_regdomain.h
/*
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)if_llc.h 8.1 (Berkeley) 6/10/93
* $FreeBSD: src/sys/net/if_llc.h,v 1.9 2002/09/23 06:25:08 alfred Exp $
*/
Qualcomm Technologies, Inc. has chosen to take WLAN host driver subject to the BSD license and terms.
host/include/if_llc.h
/*
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)queue.h 8.5 (Berkeley) 8/20/94
* $FreeBSD: src/sys/sys/queue.h,v 1.58 2004/04/07 04:19:49 imp Exp $
*/
Qualcomm Technologies, Inc. has chosen to take WLAN host driver subject to the BSD license and terms.
host/include/sys/queue.h
/*
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Chris Torek.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
subsys/diag/diag_local.c
+41
View File
@@ -0,0 +1,41 @@
Usage of PETool package
1. Pre-request
The PETool is supposed to run on a Windows PE system with Qualcomm Atheros
Wi-Fi chip attached.
2. Install the Qualcomm Atheros Wi-Fi driver by drvload command.
For example: drvload netahrx.inf
3. The usage of PEDiagUtility.exe
3.1 Register WlanMonHelper module:
regsvr32 "%PETool_DIR%\wlanmonhelper.dll"
3.2 Run PETool
PEDiagUtility Test <TestNo> [-SSID <ApName> ][-THREADHOLD <Number>] [-d <output-file path>]
Example:
PEDiagUtility Test 6 -SSID Hydra -THREADHOLD -55 - for antenna connectivity test.
PEDiagUtility Test 1 -LED On -d C:\Test.txt - for single tests
PEDiagUtility Test 1 5 4 -LED Off -d C:\Test.txt - for specific tests
PEDiagUtility Test 1 To 10 -LED Off -d C:\Test.txt - for range of tests
NOTE:
Currently only the Test 6 for antenna connectivity test is supported for QCA61x4.
Need writhe the correct BT_HWID to disable BT for Test 6 for Aphrodite.
---------------------------------------------------------
PE Test Cases :
1 : Module/mini Cards Detection.
2 : Device IO and IRG Assignments.
3 : Device & Vendor Information.
4 : WLAN MAC Address.
5 : System IRG number used.
6 : Antenna Connectivity Test.
7 : WLAN LED Status and On/Off Test.
8 : Wirless Switch Status and On/Off Test.
9 : COEX_ BT_ACTIVE Status Test.
10 : COEX_WLAN_ACTIVE On/Off Test.
-d : <dump-file> : Redirect output to the file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More