Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

SCT Style

Use the following style conventions when modeling an SCChart:

...

Code Block
languagesct
titleSCT Code Style
linenumberstrue
scchart {

  input bool trigger;
  output bool action0, action1;
  int fun;

  region first_region "Have fun":
  // State example
  initial state example_state
  --> example_state "Having fun"
    with trigger
    / action0 = true
    ; action1 = false
    ; fun++
  ;

  // Region
  region second_region "Do nothing concurrently":

  initial state init;
}

...

Git

Use git.

Pull before you start coding.

...