@pinias
Could you elaborate on your MODULE?
@Anybody
1. Does anyone know of a MODULE tutorial? Are they like POUs?
2. I was thinking of making a c file that has my database as an initializer to a structure, and then accessing it through a C POU.
The table would be something like this:
struct dtc_list
{
unsigned int dtc;
unsigned int fmi;
unsigned int pcode;
char *desc;
};
dtc_list[] =
{
{ 1234, 3, 202, "Peu36 Space modulator voltage high" },
{ 222, 1, 123, "Intake air pressure sensor voltage high" },
...
};
Albert