I have got an Amiga 1200 keyboard and LEDs hooked to a Keyrah V2 running Amibian. I have set the numlock to function as HD and Scrol Lock as Power but lights do not come on when I load up my config in Amibian. Does anyone know how to get them to work?
Thank you.
I found that ioctl might help, here is a test, I've not tried it yet:
#include <stdio.h>
#include <linux/kd.h>
int main(int argc, char *argv[])
{
ioctl(1, KDSETLED, NUM_LED);
return 0;
}