summaryrefslogtreecommitdiff
path: root/ucoolib/intf
AgeCommit message (Collapse)Author
2019-10-07Change license to MIT LicenseNicolas Schodet
2019-10-07ucoolib/intf: fix adc classNicolas Schodet
2019-10-07ucoolib: add ADC driverNicolas Schodet
2019-10-06ucoolib/hal/i2c: add finished handler callNicolas Schodet
2019-10-06ucoolib/hal/i2c: add i2c driverNicolas Schodet
2019-10-06ucoolib/intf: add missing file compilationNicolas Schodet
2019-10-06ucoolib/hal/spi: new spi moduleNicolas Schodet
2019-10-06ucoolib/hal/gpio: add GPIONicolas Schodet
2019-10-06ucoolib/intf: fix for signed charNicolas Schodet
When promoting a char to int, if char is signed (which is implementation dependant), there is sign extension. We do not want that.
2019-10-06ucoolib/intf: add Stream::pollNicolas Schodet
2019-10-06ucoolib/intf: default to blocking StreamNicolas Schodet
2019-10-06ucoolib/intf: move constructor as protectedNicolas Schodet
As Stream is an abstract class, forbid direct construction.
2019-10-06ucoolib/intf: add stream interfaceNicolas Schodet