| 49 | // ----- Functions ----- |
| 50 | |
| 51 | uint8_t ps2data_read() { |
| 52 | #if defined(_teensy_3_) |
| 53 | return (PS2_PORT_PDIR & (1 << PS2_DATA_PIN)) != 0; |
| 54 | #else |
| 55 | #warning "Not implemented" |
| 56 | #endif |
| 57 | } |
| 58 | |
| 59 | void portb_isr() { |
| 60 | #if defined(_teensy_3_) |
no outgoing calls
no test coverage detected
searching dependent graphs…