Increase the size of the BLE packet cache

In the latest OSTC hardware, the Telit/Stollman bluetooth module has
been replaced with a u-Blox Nina B2 bluetooth module. This new module
supports BLE data packets of up to 244 bytes (corresponding to an ATT
MTU of 247 bytes and a LL PDU payload size of 251 bytes).
This commit is contained in:
Jef Driesen 2022-01-18 18:50:53 +01:00
parent f6df075d51
commit d960a37e12

View File

@ -106,7 +106,7 @@ typedef struct hw_ostc3_device_t {
unsigned int firmware;
unsigned char fingerprint[5];
hw_ostc3_state_t state;
unsigned char cache[20];
unsigned char cache[244];
unsigned int available;
unsigned int offset;
} hw_ostc3_device_t;