Interrupts do not work on the Orange Pi 3 and Orange Pi Win (H6 boards) due to the gpio pin names/numbers: both boards use gpio ports with numbers between 300 and 400, while the watched file array (sysFds on wiringPi.c) has a size of 64 (it can only contain gpio ports from 0 to 63).
"gpio readall" output from OPI3, notice GPIO names:
Interrupts do not work on the Orange Pi 3 and Orange Pi Win (H6 boards) due to the gpio pin names/numbers: both boards use gpio ports with numbers between 300 and 400, while the watched file array (sysFds on wiringPi.c) has a size of 64 (it can only contain gpio ports from 0 to 63).
"gpio readall" output from OPI3, notice GPIO names:
sysFds declaration (wiringPi.c:332)
sysFds usage (wiringPi.c:2097): When using pin 3 on OPI3 (GPIO354), sysFds[354] is not defined, so interrupt is never configured.