forked from riebl/artery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- macOld --> mac, also in the ned file
- fix layout of make menu (both in makefrag and makefile; does the makefrag still have any purpose at all now?) git-svn-id: https://mixim.svn.sourceforge.net/svnroot/mixim/trunk@461 ccb5d51d-3e1d-0410-9886-bf3c9037c363
- Loading branch information
otvi
committed
Oct 23, 2008
1 parent
22ea54d
commit b730a38
Showing
3 changed files
with
28 additions
and
27 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
package org.mixim.modules.macOld; | ||
package org.mixim.modules.mac; | ||
|
||
simple EyesMacLayer | ||
{ | ||
simple EyesMacLayer { | ||
parameters: | ||
bool debug; // debug switch | ||
double headerLength; // length of the MAC packet header (in bits) | ||
bool debug; // debug switch | ||
double headerLength; // length of the MAC packet header (in bits) | ||
bool lpl; | ||
volatile double siftNodes; | ||
|
||
gates: | ||
input upperGateIn; // from the network layer | ||
output upperGateOut; // to the network layer | ||
input upperControlIn; // control from the network layer | ||
output upperControlOut; // control to the network layer | ||
input lowerGateIn; // from the physical layer | ||
output lowerGateOut; // to the physical layer | ||
input lowerControlIn; // control from the physical layer | ||
output lowerControlOut; // control to the physical layer | ||
input upperGateIn; // from the network layer | ||
output upperGateOut; // to the network layer | ||
input upperControlIn; // control from the network layer | ||
output upperControlOut; // control to the network layer | ||
input lowerGateIn; // from the physical layer | ||
output lowerGateOut; // to the physical layer | ||
input lowerControlIn; // control from the physical layer | ||
output lowerControlOut; // control to the physical layer | ||
} | ||
|