top of page

Install ADB and fastboot from Android Studio 3.0.1 on Windows 7 Professional
Click (1) Tools, (2) Android, (3) SDK Manager
Click (1) SDK Tools then (2) Android SDK Platform-Tools and click (3) Apply

Enter Android Recovery Mode on a Google Pixel
1. Press & hold the Volume down button. While holding Volume down, press & hold the Power button until the device turns on. You'

SSH Directly to a Machine You'd Normally Need to SSH Into a Server to Get To
Host *
ServerAliveInterval 60
Host remote.server.com
HostName remote.server.com
Port 10022
User useronremote
IdentityFile ~/.ssh/

What is the Voltage of the UART on my Zynq UltraScale+ MPSoC Board?
Look at the schematic to see which MIO UART TX and RX are connected to. Consult this table. Find the corresponding VCC_PSIO pin and what vo

Run the 2017.4 ZCU102 PetaLinux BSP on QEMU
petalinux-create -t project -s xilinx-zcu102-v2017.4-final.bsp --name zcu102qemu

Download, Build and Install Make 3.81 to a Local Directory From a tar.gz
wget https://ftp.gnu.org/gnu/make/make-3.81.tar.gz
tar -xvzf $LOCALPACKAGE/make-3.81.tar.gz
cd make-3.81

Set Up and Test VirtualBox NAT Port Forwarding
nc -l -p 9000
nc localhost 9001

Create a TCP Client and Server and Send Messages with Netcat
nc -l -p 12345
nc localhost 12345

Installing 2017.4 Vivado and SDK on Linux
Download Xilinx_Vivado_SDK_2017.4_1216_1.tar.gz from the Xilinx.com download center @ https://www.xilinx.com/member/forms/download/xef.html?

Create, Build and Test a PetaLinux Tools 2017.4 Project
petalinux-create --type project --template zynqMP --name myproj
bottom of page