(index)
| 702 | } |
| 703 | } |
| 704 | async readEfuse(index) { |
| 705 | const EFUSE_REG_BASE = 0x6001a000; |
| 706 | return this.readRegister(EFUSE_REG_BASE + (index << 2)); |
| 707 | } |
| 708 | async readRegister(address) { |
| 709 | const payload = new ArrayBuffer(4); |
| 710 | const view = new DataView(payload); |