pixelflut/README.md

24 lines
761 B
Markdown
Raw Normal View History

2024-10-19 00:11:26 +02:00
# pixel~~flut~~rinnsal
2024-12-30 02:11:47 +01:00
Pixelflut on an FPGA with an active area of 346 by 196 pixels (video format 640x480 at ~60Hz)
2024-12-30 02:16:44 +01:00
The Ethernet PHY on the Arty A7 is limited to 100Mbit/s, so *use less bandwidth!*
2024-12-30 02:11:47 +01:00
## "Protocol"
see [GPN17:Pingxelflut](https://entropia.de/GPN17:Pingxelflut#Format)
Do not expect to get an ICMPv6 Echo Reply, as only the receiver is implemented :D
## Routing
2024-12-30 02:16:44 +01:00
**This is meant only as a reference for setting up the system directly connected to the FPGA board.**
**You do not need to run these commands on your machine.**
2024-12-30 02:11:47 +01:00
```
ip a add 2001:db8::ffff:ffff:0:2/64 dev eth0
ip neigh add 2001:db8::ffff:ffff:0:1 lladdr 02:00:00:00:00:00 dev eth0
ip r add 2001:db8::/64 via 2001:db8::ffff:ffff:0:1 dev eth0
2024-12-31 00:36:45 +01:00
ip r del 2001:db8::/64 dev eth0
2024-12-30 02:11:47 +01:00
```