Added optional string pointers to HAL for driver and board URLs. If present they are announced by the SSDP protocol.

This commit is contained in:
Terje Io
2022-10-07 10:17:07 +02:00
parent 04c9a50a13
commit 6e22a074c8
7 changed files with 72 additions and 11 deletions
+3
View File
@@ -32,6 +32,7 @@ Helper functions for saving away and restoring a stream input buffer. _Not refer
#define ASCII_STX 0x02
#define ASCII_ETX 0x03
#define ASCII_EOT 0x04
#define ASCII_ENQ 0x05
#define ASCII_ACK 0x06
#define ASCII_BS 0x08
#define ASCII_TAB 0x09
@@ -333,6 +334,8 @@ void stream_disconnect (const io_stream_t *stream);
const io_stream_t *stream_get_base (void);
io_stream_flags_t stream_get_flags (io_stream_t stream);
const io_stream_t *stream_null_init (uint32_t baud_rate);
io_stream_t const *stream_open_instance (uint8_t instance, uint32_t baud_rate, stream_write_char_ptr rx_handler);