tests/plc.c
author etisserant
Thu, 30 Aug 2007 16:40:20 +0200
changeset 57 db9cadaab2ea
child 132 39f88c3d803d
permissions -rw-r--r--
Now generated SoftPLC compiles with mingw32 and run windows.
#include "iec_std_lib.h"
#include <stdio.h>

/*
 * Functions and variables provied by generated C softPLC
 **/ 
void config_run__(int tick);
void config_init__(void);

/*
 *  Functions and variables to export to generated C softPLC
 **/
 
TIME __CURRENT_TIME;

#define __LOCATED_VAR(type, name, ...) type name;
#include "LOCATED_VARIABLES.h"
#undef __LOCATED_VAR

static int tick = 0;

void run()
{
    printf("Tick %d\n",tick);
    config_run__(tick++);
    printf("  Located variables : \n");
#define __LOCATED_VAR(type, name,...) __print_##type(name);
#include "LOCATED_VARIABLES.h"
#undef __LOCATED_VAR
}