STCOUNTER hasn't any referred clock, either HW or SW, so this counter can increase only by calling IncrementCounter(). In the sample application, IncrementCounter() is called under TaskCnt context, so the duration of STCOUNTER tick is pretty much depended on the period calling time of TaskCnt.
TaskCnt is setup under Schedule table (see the expirePoint), and the duration of Schedule Table is 30000 based on SYSTEMTIMER ticks:

Assumed that SYS_CLK is 16MHz, eMIOS_0 uses FS80 = SYS_CLK/2 = 8MHz. Global prescaler = 2 as per configuration => EMIOS_0 clock is 8MHz/3 = 2.67MHz.
=> 30000 ticks should be: 1/(2.67*10^6)*30000 = 0.01125 (s) = 11.25 (ms).
Then 1 tick of STCOUNTER should be 11.25ms as every 11.25 ms TaskCnt is called to increase the STCOUNTER tick.