| 70 | } |
| 71 | |
| 72 | uint16_t AXP192::Read13Bit(uint8_t Addr) { |
| 73 | uint16_t Data = 0; |
| 74 | uint8_t buf[2]; |
| 75 | ReadBuff(Addr, 2, buf); |
| 76 | Data = ((buf[0] << 5) + buf[1]); // |
| 77 | return Data; |
| 78 | } |
| 79 | |
| 80 | uint16_t AXP192::Read16bit(uint8_t Addr) { |
| 81 | uint16_t ReData = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected