2022-04-04 19:13:12 -04:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
echo *** Re-flash the HackRF with PortaPack firmware ***
|
|
|
|
echo.
|
|
|
|
echo Connect your HackRF One to a USB port on your computer.
|
|
|
|
echo.
|
|
|
|
echo If using a PortaPack, put the PortaPack in HackRF mode by selecting
|
|
|
|
echo the "HackRF" option from the main menu.
|
|
|
|
echo.
|
|
|
|
pause
|
|
|
|
|
|
|
|
echo.
|
2023-05-20 22:52:35 -04:00
|
|
|
|
|
|
|
REM Check if the firmware file exists
|
|
|
|
if not exist portapack-h1_h2-mayhem.bin (
|
|
|
|
echo The firmware file "portapack-h1_h2-mayhem.bin" does not exist.
|
|
|
|
echo Please ensure that you have downloaded the latest release from:
|
|
|
|
echo https://github.com/eried/portapack-mayhem/releases/
|
|
|
|
echo.
|
|
|
|
pause
|
|
|
|
exit /b
|
|
|
|
)
|
|
|
|
|
2023-05-20 22:59:50 -04:00
|
|
|
"utils/hackrf_update.exe" portapack-h1_h2-mayhem.bin
|
2022-04-04 19:13:12 -04:00
|
|
|
echo.
|
2023-04-26 01:26:37 -04:00
|
|
|
echo If your device never boot after flashing, please refer to https://github.com/eried/portapack-mayhem/wiki/Won't-boot
|
|
|
|
echo.
|
2022-04-04 19:13:12 -04:00
|
|
|
pause
|