Skip to main content
. 2021 May 26;21(11):3691. doi: 10.3390/s21113691
Algorithm 2 Application Algorithm
  •   1:

    Start timers, loggers

  •   2:

    ifinput flow exists then

  •   3:

        Configure Application accordingly to input source

  •   4:

    end if

  •   5:

    ifconfig_json exists then

  •   6:

        for job in job_list do

  •   7:

         Create job

  •   8:

         for port of Job do

  •   9:

          if ports not exists then

  •  10:

             Create port

  •  11:

          end if

  •  12:

          Link Job to Port

  •  13:

         end for

  •  14:

        end for

  •  15:

        for job in job_list do

  •  16:

         Run Job.Init()

  •  17:

        end for

  •  18:

        while wave do

  •  19:

         Scheduler(job_list)

  •  20:

         Save debug data, ports

  •  21:

        end while

  •  22:

        for job in job_list do

  •  23:

         Run Job.Terminate()

  •  24:

        end for

  •  25:

    end if