| 40 | Pin* _mapping[N_PIN_MAPPINGS]; |
| 41 | |
| 42 | PinMap() { |
| 43 | for (pinnum_t i = 0; i < N_PIN_MAPPINGS; ++i) { |
| 44 | _mapping[i] = nullptr; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | pinnum_t Claim(Pin* pin) { |
| 49 | for (pinnum_t i = 0; i < N_PIN_MAPPINGS; ++i) { |
nothing calls this directly
no outgoing calls
no test coverage detected