Getting Error in Omnetpp.ini file

Hi,
I am running omnet 5.
I am trying to create a project from the documentation:
https://docs.omnetpp.org/tutorials/tictoc/part4/


I am getting error in .ini file:

I am getting error in my ini file:

[CODE]
[General]
# nothing here

[Config Tictoc13]
network = Tictoc13

[\CODE]

My .ned file is:

[CODE]
simple Txc13
{
parameters:
@display("i=block/routing");
gates:
inout gate[];
}

network Tictoc13
{
types:
channel Channel extends ned.DelayChannel {
delay = 100ms;
}
submodules:
tic[6]: Txc13;
connections:
tic[0].gate++ <--> Channel <--> tic[1].gate++;
tic[1].gate++ <--> Channel <--> tic[2].gate++;
tic[1].gate++ <--> Channel <--> tic[4].gate++;
tic[3].gate++ <--> Channel <--> tic[4].gate++;
tic[4].gate++ <--> Channel <--> tic[5].gate++;
}

[\CODE]


Some body please guide me.

Zulfi.
Last edited on
Topic archived. No new replies allowed.