aboutsummaryrefslogtreecommitdiff
path: root/src/peripherals/spi.spec.ts (follow)
Commit message (Collapse)AuthorAgeFilesLines
* docs: add copyright notice to source codeUri Shaked2025-02-111-0/+3
|
* test: migrate tests from jest to vitestUri Shaked2025-02-111-3/+4
|
* feat(spi): add `onByte` callbackUri Shaked2021-10-301-8/+10
| | | | | | a more versatile alternative to the `onTransfer` callback. Depracate `onTransfer()`.
* fix(spi): setting SPIE doesn't fire pending interruptUri Shaked2021-10-221-0/+22
|
* fix(timer): Output Compare in PWM modes #78Uri Shaked2020-12-271-1/+1
| | | | close #78
* perf!: centeral timekeepingUri Shaked2020-12-091-8/+3
| | | | | | | | | This should improve performance, especially when running simulations with multiple peripherals. For instance, the demo project now runs at ~322%, up from ~185% in AVR8js 0.13.1. BREAKING CHANGE: `tick()` methods were removed from individual peripherals. You now need to call `cpu.tick()` instead.
* refactor: central interrupt handling #38Uri Shaked2020-12-091-0/+5
|
* feat(spi): implement SPI master #33Uri Shaked2020-08-221-0/+222
close #33