blob: 634db0bc1b92a4e96e57e8e1e8f8b9d63e05be2b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Gate Array Learn
apt install yosys fpga-icestorm nextpnr-ice40 verilator flashrom
make
doas make load
Pulse Density Modulation
https://en.wikipedia.org/wiki/Pulse-code_modulation
https://curiouser.cheshireeng.com/2015/01/21/pdm-in-attiny85-source-code/
Raspberry Pi UART
Enable serial communication in raspi-config.
UART
stty -F /dev/ttyUSB1 1000000 raw cs8
hexdump -ve '1/1 "%u\n"' /dev/ttyUSB1 | pv > pcm.txt
|