Changeset f2d88f3 in mainline for uspace/app/sportdmp


Ignore:
Timestamp:
2019-01-04T21:22:17Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
af7b85b
Parents:
06412ba
Message:

Add forgotten changes to enable non-blocking chardev read

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sportdmp/sportdmp.c

    r06412ba rf2d88f3  
    146146
    147147        while (true) {
    148                 rc = chardev_read(chardev, buf, BUF_SIZE, &nread);
     148                rc = chardev_read(chardev, buf, BUF_SIZE, &nread,
     149                    chardev_f_none);
    149150                for (size_t i = 0; i < nread; i++) {
    150151                        printf("%02hhx ", buf[i]);
Note: See TracChangeset for help on using the changeset viewer.