Go to file
2019-09-03 11:14:12 -06:00
final_project Updated folder structure 2019-09-03 09:55:35 -06:00
lab_1 Updated folder structure 2019-09-03 09:55:35 -06:00
lab_2 Updated folder structure 2019-09-03 09:55:35 -06:00
lab_3 Updated folder structure 2019-09-03 09:55:35 -06:00
lab_4 Updated folder structure 2019-09-03 09:55:35 -06:00
.gitignore Changed project name and added onto .gitignore 2019-09-03 11:14:12 -06:00
CMakeLists.txt Changed project name and added onto .gitignore 2019-09-03 11:14:12 -06:00
generic-gcc-avr.cmake Added CMAKE stuff 2019-09-03 10:36:07 -06:00
main.c Added CMAKE stuff 2019-09-03 10:36:07 -06:00
Makefile Initial Commit 2019-09-03 09:25:53 -06:00
README.md Updated README 2019-09-03 10:38:04 -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

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