diff options
author | 2022-05-12 21:10:35 -0600 | |
---|---|---|
committer | 2022-05-12 23:10:35 -0400 | |
commit | 5052eb307a959644677037be52b9a168a68775dd (patch) | |
tree | 9bd5a1a29e81d6cea632ea25449232d9bb62f50e /src/devices/imagedev/bitbngr.h | |
parent | bdc0d0dea1f4113bca2ce5162dc044a026b43b58 (diff) |
bitbanger: Add udp multicast support (#9744)
Example usage: -bitb udp.234.99.99.99:15122
Diffstat (limited to 'src/devices/imagedev/bitbngr.h')
-rw-r--r-- | src/devices/imagedev/bitbngr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/imagedev/bitbngr.h b/src/devices/imagedev/bitbngr.h index 5b02417cfc3..2acca9b16ce 100644 --- a/src/devices/imagedev/bitbngr.h +++ b/src/devices/imagedev/bitbngr.h @@ -37,6 +37,8 @@ public: void output(uint8_t data); uint32_t input(void *buffer, uint32_t length); + int send(uint8_t *buf, int len); + void flush_rx(); protected: // device_t implementation |