This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| void | Hall_sensors_ISR_init (void) |
Hall_sensors_ISR_init set-up Pin change interrupts on optionnal hall sensors inputs
| |
| void Hall_sensors_ISR_init | ( | void | ) |
Hall_sensors_ISR_init set-up Pin change interrupts on optionnal hall sensors inputs
Definition at line 50 of file Hall_sensors.c.
Referenced by main().
00051 { 00052 /*init PCINT0 Pin change interrupt initialisation */ 00053 // PCINT7...0 interrupt pins enabled 00054 PCICR |= 1 << PCIE0; 00055 // PCINT7/6 interrupt pin are enabled 00056 PCMSK0 |= (1 << PCINT7) | (1 << PCINT6); 00057 }
1.4.7