| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5.
- [Release notes](https://github.com/daaku/nodejs-tmpl/releases)
- [Commits](https://github.com/daaku/nodejs-tmpl/commits/v1.0.5)
---
updated-dependencies:
- dependency-name: tmpl
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
Removing the interface simplifies the code
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
fix #103
|
| | |
|
| |
|
|
|
|
| |
also refactor timer/GPIO interaction to be more generic.
close #97
|
| |
|
|
| |
also reformat all the code with the new version
|
| | |
|
| |
|
|
| |
fix #102
|
| |\
| |
| | |
chore(deps): bump path-parse from 1.0.6 to 1.0.7
|
| |/
|
|
|
|
|
|
|
|
|
|
|
| |
Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/jbgutierrez/path-parse/releases)
- [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7)
---
updated-dependencies:
- dependency-name: path-parse
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
|
| | |
|
| |
|
|
| |
Disabling PWM when a GPIO pin is high will cause the pin to get stuck in high state.
|
| | |
|
| | |
|
| |
|
|
| |
The value will be available immediately to the user program instead of waiting one symbol time before making it available.
|
| | |
|
| |
|
|
| |
fix the calculation of cyclesPerChar, which is used to determine when a USART RX/TX operation is marked complete.
|
| | |
|
| |
|
|
| |
also add `txEnable` and `rxEnable` properties
|
| | |
|
| |
|
|
| |
The ICR (Input Capture Register) only exists for 16-bit timers.
|
| | |
|
| |
|
| |
close #70, #84
|
| | |
|
| |
|
|
|
|
| |
Use a linked list instead of array. This makes the simulator runs almost twice as fast in case of timers with prescaler of 1, e.g. when using the TVout library.
In addition, we use a pool of clock event objects to avoid expensive GCs.
|
| | |
|
| |
|
|
| |
close #94
|
| | |
|
| |\
| |
| | |
chore(deps): bump browserslist from 4.7.3 to 4.16.6
|
| |/
|
|
|
|
|
|
| |
Bumps [browserslist](https://github.com/browserslist/browserslist) from 4.7.3 to 4.16.6.
- [Release notes](https://github.com/browserslist/browserslist/releases)
- [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md)
- [Commits](https://github.com/browserslist/browserslist/compare/4.7.3...4.16.6)
Signed-off-by: dependabot[bot] <support@github.com>
|
| | |
|
| | |
|
| |
|
|
| |
fix #91
|
| | |
|
| |\
| |
| | |
chore(deps): bump y18n from 4.0.0 to 4.0.1
|
| |/
|
|
|
|
|
|
| |
Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1.
- [Release notes](https://github.com/yargs/y18n/releases)
- [Changelog](https://github.com/yargs/y18n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/yargs/y18n/commits)
Signed-off-by: dependabot[bot] <support@github.com>
|
| |\
| |
| | |
chore(deps): bump elliptic from 6.5.3 to 6.5.4
|
| |/
|
|
|
|
|
| |
Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.3 to 6.5.4.
- [Release notes](https://github.com/indutny/elliptic/releases)
- [Commits](https://github.com/indutny/elliptic/compare/v6.5.3...v6.5.4)
Signed-off-by: dependabot[bot] <support@github.com>
|
| |\
| |
| | |
clarifying the scope of library
|
| | | |
|
| |/
|
| |
Attempt to clarify the scope of this library and what else is needed to make a complete application.
|
| | |
|
| |
|
|
| |
close #11
|
| |
|
|
| |
rewrite TaskScheduler to use `MessageChannel` instead of `window.postMessage`, to make the code portable into a Web Worker.
|