Hallo, wenn ich es wie folgt schreibe :

typedef struct {char adress1; char pin1; char adress2; char pin2;} taste;

taste T1 EEMEM = {0x72, 1, 0x74, 3};
taste T2 EEMEM = {0x72, 2, 0x74, 4};

taste *T13 EEMEM = &T1;
taste *T14 EEMEM = &T2;

taste *pro[] EEMEM = {&T13, &T14};

kommt die Fehlermeldung :
main.c:12: warning: initialization from incompatible pointer type

WARUM???