May be you know how to enable interrupts in 3Com?
I find in datasheet next info:
set_read_zero_mask(0xFF); //P40 (6-8)
set_interrupt_mask(0xFF);
this must enable ALL interrupts from 3Com. But now work. My Network
card have IRQ9 (IRQ9 pin of ISA slot connected to INT0 pin of ATMega).
I hava add next lines to program source:
Networkcard_INT_Set();
Networkcard_INT_Enable();
SIGNAL(SIG_INTERRUPT0)
{
//Globale Interrupts Ausschalten
// cli ();
printf ("interrupt\n");
// sei ();
}
If I connect INT0 pin of ATMega to VCC program receive this interrupt.
Will 3Com work with interrupts?