aboutsummaryrefslogtreecommitdiff
path: root/src/peripherals/gpio.ts (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-05-25feat(timer): Compare Match Output (#45)Uri Shaked1-11/+53
The Compare Match Output bits are used to generate hardware PWM signals on selected MCU pins. This is also the mechanism used by Arduino's analogWrite() method. See #32 for more details
2020-05-10feat(gpio): add setPin() functionUri Shaked1-0/+20
close #26
2020-04-27style: reformat code with prettier 2.xUri Shaked1-12/+12
prettier rules have changed since we upgraded to 2.x
2020-04-02fix: GPIO port listeners not invoked when writing to DDR registersUri Shaked1-0/+4
close #28
2020-03-22refactor: added peripherals and cpu feature folderslironh1-2/+2
2020-01-11fix(gpio): pinState() value incorrect in GPIO listenersUri Shaked1-1/+2
fix #9
2020-01-08feat(gpio): add pinState() methodUri Shaked1-2/+28
close #8
2019-11-30feat: add more GPIO portsUri Shaked1-0/+48
close #3
2019-11-25feat: GPIO peripheral implementationUri Shaked1-0/+74
Add new AVRIOPort class, implements GPIO output logic