summaryrefslogtreecommitdiff
path: root/tests/api_send0_eth0_1s1r/simulator.py
blob: ae5bbeadaefe8850547a87016a95522b1bfe52c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

# Load ESDS
import esds
import numpy as np

B=np.full((2,2),8)
L=np.full((2,2),0)
s=esds.Simulator({"wlan0":{"bandwidth":B, "latency":L, "is_wired":False}, "eth0":{"bandwidth":B, "latency":L, "is_wired":True}})

s.create_node("sender")
s.create_node("receiver")

s.run()