Skip to content

Instantly share code, notes, and snippets.

View vooon's full-sized avatar
🚴‍♂️
Working from home

Vladimir Ermakov vooon

🚴‍♂️
Working from home
View GitHub Profile
#!/bin/bash
ROSDISTRO=indigo
ROSINSTALL=/opt/ros/$ROSDISTRO
ROSUPFILE=/tmp/rosup.yaml
export-armhf-arch() {
export DISTCC_HOSTS='robert'
export ARCH=arm
@vooon
vooon / enable bt on wandboard tweak
Created August 16, 2013 04:31
Wandboard Ubuntu. Add this to script in /etc/init/board_tweaks.conf (brcm_patchram_plus - compiled brcm_patchram_plus.c from bsp)
if [ -f /proc/device-tree/model ]; then
model=$(cat /proc/device-tree/model)
case "${model}" in
Wandboard*)
/usr/local/sbin/brcm_patchram_plus --timeout=6.0 --patchram /lib/firmware/brcm/bcm4329.hcd --baudrate 921600 --use_baudrate_fo
r_download /dev/ttymxc2
;;
esac
fi