This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FIVR CPU Core Offset Voltage -100mV | |
FIVR CPU Cache Offset Voltage -100mV | |
TPL Long Power PL1 10W | |
TPL Long Power PL2 10W |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb shell pm uninstall -k --user 0 com.evenwell.DbgCfgTool.overlay.base.s600ww | |
adb shell pm uninstall -k --user 0 com.evenwell.SetupWizard.overlay.base.s600ww | |
adb shell pm uninstall -k --user 0 com.evenwell.phone.overlay.base.s600ww | |
adb shell pm uninstall -k --user 0 com.evenwell.pushagent.overlay.base.s600ww | |
adb shell pm uninstall -k --user 0 com.evenwell.partnerbrowsercustomizations.overlay.base.s600ww | |
adb shell pm uninstall -k --user 0 com.evenwell.factorywizard | |
adb shell pm uninstall -k --user 0 com.evenwell.retaildemoapp.overlay.base.s600ww | |
adb shell pm uninstall -k --user 0 com.evenwell.PowerMonitor.overlay.base.s600ww | |
adb shell pm uninstall -k --user 0 com.evenwell.foxlauncher.partner | |
adb shell pm uninstall -k --user 0 com.evenwell.telecom.data.overlay.base.s600ww |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb shell pm uninstall -k --user 0 android.autoinstalls.config.motorola.layout | |
adb shell pm uninstall -k --user 0 com.android.phone.overlay.motcommon | |
adb shell pm uninstall -k --user 0 com.android.wifi.resources.overlay.motCommon | |
adb shell pm uninstall -k --user 0 com.motorola.actions | |
adb shell pm uninstall -k --user 0 com.motorola.actions.overlay | |
adb shell pm uninstall -k --user 0 com.motorola.android.fmradio | |
adb shell pm uninstall -k --user 0 com.motorola.android.fota | |
adb shell pm uninstall -k --user 0 com.motorola.android.jvtcmd | |
adb shell pm uninstall -k --user 0 com.motorola.android.nativedropboxagent | |
adb shell pm uninstall -k --user 0 com.motorola.android.networkstack.tethering.overlay.motCommon |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nvidia-smi -lms 500 | grep Default --line-buffered | cut -c36-70 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get remove openjdk-* | |
sudo apt-get install openjdk-8-jdk-headless | |
# Download from https://developer.android.com/studio#command-tools | |
wget https://dl.google.com/android/repository/commandlinetools-linux-6609375_latest.zip | |
unzip commandlinetools-linux-*_latest.zip | |
mkdir ~/Android | |
mv tools ~/Android | |
echo "export ANDROID=$HOME/Android" >> ~/.bashrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget http://developer.download.nvidia.com/embedded/L4T/r21_Release_v5.0/source/kernel_src.tbz2 | |
tar -xpf kernel_src.tbz2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cython3 --embed src.py --output-file dst.c | |
g++ dst.c -I/usr/include/python -L/usr/lib/x86_64-linux-gnu -lpython |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import argparse | |
import usb | |
def find_interface(dev): | |
for config in dev: | |
for iface in config: | |
ep_out, ep_in = None, None | |
for ep in iface: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# linux-meson.com/doku.php#howto | |
make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- defconfig | |
make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- Image dtbs | |
mkimage -A arm64 -O linux -T kernel -C none -a 0x1080000 -e 0x1080000 -n linux-next -d arch/arm64/boot/Image ../uImage | |
cp arch/arm64/boot/dts/amlogic/meson-gxbb-wetek-play2.dtb ../uImage BOOT_PARTITION | |
# ROOTFS_PARTITION can be any arm64 Linux root filesystem |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ROS_PYTHON_VERSION=3 | |
sudo apt-get install python3-rosdep2 python3-rosinstall-generator python3-wstool | |
rosinstall_generator ros_comm --rosdistro noetic --deps --tar > ros.rosinstall | |
wstool init -j8 src ros.rosinstall | |
rosdep install -r -y --from-paths src --ignore-src --rosdistro noetic | |
catkin_make_isolated --install -DCATKIN_ENABLE_TESTING=0 | |
# rosinstall_generator common_msgs geometry navigation --rosdistro noetic --deps --tar > extras.rosinstall | |
# wstool merge -t src extras.rosinstall | |
# wstool update -t src |
NewerOlder