This file contains 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
altair==5.4.0 | |
anyio==4.4.0 | |
argon2-cffi==23.1.0 | |
argon2-cffi-bindings==21.2.0 | |
arrow==1.3.0 | |
asgiref==3.8.1 | |
astroid==3.2.4 | |
asttokens==2.4.1 | |
async-lru==2.0.4 | |
attrs==24.2.0 |
This file contains 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
{ | |
int raw_data[1024]; | |
int filt_data[1024]; | |
int out_data[1024]; | |
int idx = 0; | |
//P1 grab samples | |
for (i=0; i<1023; i++){ | |
raw_data[i] = ReadADC(); | |
} |
This file contains 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
mv /etc/apt/sources.list /etc/apt/sources.list.old | |
mv /etc/apt/sources.list.d/linaro-overlay-ppa.list /etc/apt/sources.list.old/linaro-overlay-ppa.list.old | |
echo "deb http://mirrors.digitalocean.com/ubuntu-old/ quantal main universe" > /etc/apt/sources.list | |
echo "deb-src http://mirrors.digitalocean.com/ubuntu-old/ quantal main universe" >> /etc/apt/sources.list | |
apt-get install -y ssh build-essential gdb g++ |