X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Fatorch%2Fprotocol.c;fp=src%2Fhardware%2Fatorch%2Fprotocol.c;h=e9a15bef20b885713a1ecd9451c1dae14e45d2f4;hb=cc9653de22d72b5694d56492348895097a5c626b;hp=0000000000000000000000000000000000000000;hpb=4d480e97922b6673a16b858d8702c670e0ac949b;p=libsigrok.git diff --git a/src/hardware/atorch/protocol.c b/src/hardware/atorch/protocol.c new file mode 100644 index 00000000..e9a15bef --- /dev/null +++ b/src/hardware/atorch/protocol.c @@ -0,0 +1,43 @@ +/* + * This file is part of the libsigrok project. + * + * Copyright (C) 2023 Mathieu Pilato + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include "protocol.h" + +SR_PRIV int atorch_receive_data(int fd, int revents, void *cb_data) +{ + const struct sr_dev_inst *sdi; + struct dev_context *devc; + + (void)fd; + + sdi = cb_data; + if (!sdi) + return TRUE; + + devc = sdi->priv; + if (!devc) + return TRUE; + + if (revents == G_IO_IN) { + /* TODO */ + } + + return TRUE; +}