[riot-notifications] [RIOT-OS/RIOT] sys/suit: initial support for SUIT firmware updates (#11818)
benpicco
notifications at github.com
Tue Nov 10 14:00:04 CET 2020
@benpicco commented on this pull request.
> + _buf->ptr += len;
+ _buf->len -= len;
+ return 0;
+ }
+}
+
+ssize_t suit_coap_get_blockwise_url_buf(const char *url,
+ coap_blksize_t blksize,
+ uint8_t *buf, size_t len)
+{
+ _buf_t _buf = { .ptr=buf, .len=len };
+ int res = suit_coap_get_blockwise_url(url, blksize, _2buf, &_buf);
+ return (res < 0) ? (ssize_t)res : (ssize_t)_buf.offset;
+}
+
+static void _suit_handle_url(const char *url)
Should we export that so it can be used without the suit thread?
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/RIOT-OS/RIOT/pull/11818#pullrequestreview-527176051
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.riot-os.org/pipermail/notifications/attachments/20201110/0d145840/attachment-0001.htm>
More information about the notifications
mailing list