Commit 4d4d15f7 authored by Julian Zobel's avatar Julian Zobel
Browse files

New phyType for UAV Wifi

parent 0390eb0b
......@@ -78,7 +78,13 @@ public enum PhyType {
* 500us latency, 1kByte MTU
*/
BLUETOOTH(NetInterfaceName.BLUETOOTH, 0.0, 3 * Rate.Mbit_s,
500 * Simulator.MICROSECOND_UNIT, 1024, true);
500 * Simulator.MICROSECOND_UNIT, 1024, true),
/**
* WiFi for UAV communication
*/
WIFI_UAV_NET(NetInterfaceName.WIFI_UAV_NET, 0.01, 5 * Rate.Mbit_s,
500 * Time.MICROSECOND, 2334, true);
private double defaultDropProbability;
......
......@@ -30,7 +30,7 @@ import de.tudarmstadt.maki.simonstrator.api.Time;
/**
* Energy component for actuaors, representing the electrical consumers of actuators.
* Energy component for actuators, representing the electrical consumers of actuators.
* This models several states, where energy is consumed differently.
*
* @author Julian Zobel
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment