* Prototypes for function provided by arch-specific code (main)
* concatained after this template
* Functions and variables provied by generated C softPLC
extern int common_ticktime__;
* Functions and variables provied by plc.c
void run(long int tv_sec, long int tv_nsec);
#define maxval(a,b) ((a>b)?a:b)
/*#include "stdio.h" /* For debug */
* Functions and variables provied by generated C softPLC
void config_run__(int tick);
void config_init__(void);
void __cleanup_debug(void);
* Functions and variables to export to generated C softPLC and plugins
static int init_level = 0;
* Prototypes of functions exported by plugins
* Retrieve input variables, run PLC and publish output variables
* Initialize variables according to PLC's defalut values,
* and then init plugins with that values
int __init(int argc,char **argv)
* Calls plugin cleanup proc.
void PLC_GetTime(IEC_TIME *CURRENT_TIME);
void PLC_SetTimer(long long next, long long period);
#define NOT_CALIBRATED -1
static int calibration_count = NOT_CALIBRATED;
static IEC_TIME cal_begin;
static long long Tsync = 0;
static long long FreqCorr = 0;
static int last_tick = 0;
static long long Ttick = 0;
* Call this on each external sync,
* @param sync_align_ratio 0->100 : align ratio, < 0 : no align, calibrate period
void align_tick(int sync_align_ratio)
printf("align_tick(%%d)\n", calibrate);
if(sync_align_ratio < 0){ /* Calibration */
if(calibration_count == CALIBRATED)
calibration_count = NOT_CALIBRATED;
if(calibration_count == NOT_CALIBRATED)
/* Calibration start, get time*/
}else{ /* do alignment (if possible) */
if(calibration_count >= 0){
/*adjust calibration_count*/
/* compute mean of Tsync, over calibration period */
Tsync = ((long long)(cal_end.tv_sec - cal_begin.tv_sec) * (long long)1000000000 +
(cal_end.tv_nsec - cal_begin.tv_nsec)) / calibration_count;
if( (Nticks = (Tsync / Ttick)) > 0){
FreqCorr = (Tsync mod Ttick); /* to be divided by Nticks */
FreqCorr = Tsync - (Ttick mod Tsync);
printf("Tsync = %%ld\n", Tsync);
printf("calibration_count = %%d\n", calibration_count);
printf("Nticks = %%d\n", Nticks);
calibration_count = CALIBRATED;
if(calibration_count == CALIBRATED){
/* Get Elapsed time since last PLC tick (__CURRENT_TIME) */
elapsed = (now.tv_sec - __CURRENT_TIME.tv_sec) * 1000000000 + now.tv_nsec - __CURRENT_TIME.tv_nsec;
PhaseCorr = elapsed - (Ttick + FreqCorr/Nticks)*sync_align_ratio/100; /* to be divided by Nticks */
Tcorr = Ttick + (PhaseCorr + FreqCorr) / Nticks;
/* When Sync source period is near Tick time */
/* PhaseCorr may not be applied to Periodic time given to timer */
PeriodicTcorr = Ttick + FreqCorr / Nticks;
}else if(__tick > last_tick){
PhaseCorr = elapsed - (Tsync*sync_align_ratio/100);
PeriodicTcorr = Tcorr = Ttick + PhaseCorr + FreqCorr;
/*PLC did not run meanwhile. Nothing to do*/
PLC_SetTimer(Tcorr - elapsed, PeriodicTcorr);