Go to file
David Lenfesty 69e409a28d
Lab Work
2019-10-22 17:17:56 -06:00
final_project Started Lab 2 report 2019-10-10 10:24:06 -06:00
lab_1 Started Lab 2 report 2019-10-10 10:24:06 -06:00
lab_2 Initial code for lab 3 2019-10-22 12:26:26 -06:00
lab_3 Lab Work 2019-10-22 17:17:56 -06:00
lab_4 Started Lab 2 report 2019-10-10 10:24:06 -06:00
.gitignore Started Lab 2 report 2019-10-10 10:24:06 -06:00
CMakeLists.txt Started Lab 2 report 2019-10-10 10:24:06 -06:00
generic-gcc-avr.cmake Started Lab 2 report 2019-10-10 10:24:06 -06:00
README.md Started Lab 2 report 2019-10-10 10:24:06 -06:00

ECE 312 BABYYYY

I stole the makefile from some random tutorial.

Let's do folders for each lab once we get around to it.

Dependancies

AVR-gcc and stuff like that

sudo apt install -y gcc-avr avrdude avr-libc make cmake

You also have to add yourself to the dialout group.

sudo usermod -aG dialout <username>

CMAKE instructions

You have to specify a custom toolchain when you run cmake for the first time. Example:

mkdir build && cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../generic-gcc-avr.cmake ../
make