(address)
| 271 | this.select.write(1); |
| 272 | } |
| 273 | setTargetMemoryAddress(address) { |
| 274 | const h = (address >> 16) & 0xFFFF; |
| 275 | const l = address & 0xFFFF; |
| 276 | |
| 277 | this.writeRegister(IT8951_LISAR + 2, h); |
| 278 | this.writeRegister(IT8951_LISAR, l); |
| 279 | } |
| 280 | writeRegister(register, value) { |
| 281 | this.writeCommand(IT8951_TCON_REG_WR); |
| 282 |
no test coverage detected