| 731 | */ |
| 732 | |
| 733 | boolean Fastwire::waitInt() { |
| 734 | int l = 250; |
| 735 | while (!(TWCR & (1 << TWINT)) && l-- > 0); |
| 736 | return l > 0; |
| 737 | } |
| 738 | |
| 739 | void Fastwire::setup(int khz, boolean pullup) { |
| 740 | TWCR = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected