hi! i m a new user of the k8055d, i m trying to use the card by a terminal programm edited in c with codeblocks, (by me).
The programm must simply switch some leds on for testing.
It compile fine, but nothing happens on the card when running, which is connected, power’s led on,
and sk5 and sk6 on.
here my prog,
Libraries are correctly installed, do you see anything wrong?
#include <stdio.h>
#include <stdlib.h>
#include "K8055D_C.h"
int main()
{
int i, k=0;
OpenDevice(0);
SetAllAnalog;
CloseDevice();
return 0;
}
thx