- elfutils
- libelf1
- libelf-dev
- freeglut3 (req. by OpenGL sample code)
- freeglut3-dev (req. by OpenGL sample code)
- libglib2.0-dev
- gcc-avr
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
Vagrant comes with its own curl version at /Application/Vagrant/embedded/bin directory. This curl was compiled against a 64bit machine so you should replace it with a suitable version into your computer... | |
The stack trace for the error is: | |
Downloading or copying the box... | |
/Applications/Vagrant/embedded/gems/gems/vagrant-1.2.2/lib/vagrant/util/subprocess.rb:84:in `rescue in execute': Bad CPU type in executable - curl (Vagrant::Util::Subprocess::LaunchError) | |
from /Applications/Vagrant/embedded/gems/gems/vagrant-1.2.2/lib/vagrant/util/subprocess.rb:77:in `execute' | |
from /Applications/Vagrant/embedded/gems/gems/vagrant-1.2.2/lib/vagrant/util/subprocess.rb:23:in `execute' | |
from /Applications/Vagrant/embedded/gems/gems/vagrant-1.2.2/lib/vagrant/util/downloader.rb:122:in `block in download!' | |
from /Applications/Vagrant/embedded/gems/gems/vagrant-1.2.2/lib/vagrant/util/busy.rb:19:in `busy' | |
from /Applications/Vagrant/embedded/gems/gems/vagrant-1.2.2/lib/vagrant/util/downloader.rb:121:in `download!' |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Orientation Test</title> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script> | |
<script src="orientation.js"></script> | |
<link rel="stylesheet" href="style.css"> | |
</head> |
- Clone https://github.com/gmacario/easy-build
- cd easy-build/build-yocto
- ./build.sh
- ./run.sh
- -- Now you should be inside the build-yocto docker container --
- cd /work
- source /opt/yocto/poky/oe-init-build-env <>
- bitbake -k core-image-minimal
-Forcing more UARTs in kernel-
http://unix.stackexchange.com/questions/72202/linux-not-finding-serial-ports
8250.nr_uarts = {{number}}
-Enabling pnp ioports-
cd /sys/bus/pnp/devices/
http://www.hookersandbooze.com/avr-gcc-makefile/ http://ingo.orgizm.net/blog/articles/2012-02-02-simulating-and-inspecting-code-with-gdb-and-simavr http://darkdust.net/files/GDB%20Cheat%20Sheet.pdf http://download.savannah.gnu.org/releases/simulavr/ https://www.cs.rochester.edu/u/nelson/courses/csc_173/review/gdb.html http://reprap.org/wiki/SimulAVR
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
wpa_passphrase myrouter mypassphrase > wpa.conf | |
iwlist scan | |
wpa_supplicant -Dwext -ieth1 -c/root/wpa.conf | |
wpa_cli status |
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
xdotool getmouselocation --shell (get mouse location) | |
byzanz-record --x=1101 --width=610 --y=44 --height=950 InstagramViewer.gif --duration=20 --delay=0 |
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
<Default> | |
<callManagerGroup> | |
<members> | |
<member priority="0"> | |
<callManager> | |
<ports> | |
<ethernetPhonePort>2000</ethernetPhonePort> | |
<mgcpPorts> | |
<listen>2427</listen> | |
<keepAlive>2428</keepAlive> |
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
#/bin/sh | |
# burn myhex.hex file | |
/usr/share/arduino/hardware/tools/avrdude -C/usr/share/arduino/hardware/tools/avrdude.conf -v -v -v -v -patmega328p -cstk500v1 -P /dev/ttyUSB0 -b57600 -D flash:w:myhex.hex:iç | |
# verify contents of flash against myhex.hex | |
/usr/share/arduino/hardware/tools/avrdude -C/usr/share/arduino/hardware/tools/avrdude.conf -v -v -v -v -patmega328p -cstk500v1 -P /dev/ttyUSB0 -b57600 -D flash:v:myhex.hex:i |
OlderNewer