Skip to content

Insert/AcousticModemComms.tl

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
aggregate AcousticModemComms {
  """
  Triggers periodic acoustic comms.
  """

  arguments {
    Timeout = 10 minute

    CommsInterval = 5 minute
      """
      The timing is based on the variable Universal:platform_communications
      """
  }

  run while (
    elapsed ( Universal:platform_communications ) > CommsInterval
  )

  aggregate CheckIn {
    run in sequence

    readDatum {
      timeout duration=Timeout

      Universal:platform_communications
    }
  }
}