[cmp] update Bled to latest

* Adds the provision of default buffer size in bled_init()
This commit is contained in:
Pete Batard 2023-06-30 13:05:42 +01:00
parent c717c7789b
commit c47ee4c435
No known key found for this signature in database
GPG key ID: 38E0CF5E69EDD671
10 changed files with 31 additions and 20 deletions

View file

@ -27,10 +27,10 @@
/* Default input buffer size */
#define IBUFSIZ BB_BUFSIZE
#define IBUFSIZ ((int)BB_BUFSIZE)
/* Default output buffer size */
#define OBUFSIZ BB_BUFSIZE
#define OBUFSIZ ((int)BB_BUFSIZE)
/* Defines for third byte of header */
#define BIT_MASK 0x1f /* Mask for 'number of compresssion bits' */