ATmega128RFA1 bug fix: no interrupt pin used (embedded radio).

Enabling interrupt caused MCU reset if using pin as GPIO.
This commit is contained in:
Ivan Delamer 2012-07-10 14:36:47 -06:00
parent 86115a392e
commit 17a62a649c
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ hal_init(void)
// TCCR1B = HAL_TCCR1B_CONFIG; /* Set clock prescaler */
// TIFR1 |= (1 << ICF1); /* Clear Input Capture Flag. */
// HAL_ENABLE_OVERFLOW_INTERRUPT(); /* Enable Timer1 overflow interrupt. */
hal_enable_trx_interrupt(); /* Enable interrupts from the radio transceiver. */
//hal_enable_trx_interrupt(); /* NOT USED: Enable interrupt pin from the radio transceiver. */
}
#elif defined(__AVR__)