From mboxrd@z Thu Jan 1 00:00:00 1970 From: Grant Edwards To: ecos-discuss@sources.redhat.com Subject: [ECOS] RedBoot serial rx interrupts Date: Fri, 12 Jan 2001 15:09:00 -0000 Message-id: <20010112171320.A28773@visi.com> X-SW-Source: 2001-01/msg00215.html I've got RedBoot running fine without network support. It's using polled serial I/O: the individual serial Rx interrupts are unmasked but the global interrupt mask is set. [Why are interrupts being unmasked when polled I/O is being used?] When I add network support, the global interrupt mask is cleared; cyg_hal_plf_serial_isr then consumes all of input data. RedBoot is still calling cyg_hal_plf_serial_getc() to try to read input, but it never sees any because it's all being consumed by the interrupt routine. Can anybody point me to something that explains RedBoot's use of interrupts? Is the network stack interrupt driven? Why does including network support clear the global interrupt mask bit? When is serial I/O interrupt driven? -- Grant Edwards grante@visi.com