lib: updatehub: Fix buffer sizes
The MAX_PAYLOAD_SIZE must reflect the size of COAP_BLOCK_x. This is necessary becase BLOCK size represents max payload size. The current value create inconsistencies for coap lib. The same way, MAX_DOWNLOAD_DATA must allocate sufficient space for MAX_PAYLOAD_SIZE plus all space for coap header etc. Signed-off-by: Gerson Fernando Budke <gerson.budke@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
parent
92f9cd9f85
commit
5f5919a900
2 changed files with 8 additions and 3 deletions
|
@ -35,8 +35,13 @@ LOG_MODULE_REGISTER(updatehub);
|
|||
#define NETWORK_TIMEOUT K_SECONDS(2)
|
||||
#define UPDATEHUB_POLL_INTERVAL K_MINUTES(CONFIG_UPDATEHUB_POLL_INTERVAL)
|
||||
#define MAX_PATH_SIZE 255
|
||||
#define MAX_PAYLOAD_SIZE 500
|
||||
#define MAX_DOWNLOAD_DATA 1100
|
||||
/* MAX_PAYLOAD_SIZE must reflect size COAP_BLOCK_x option */
|
||||
#define MAX_PAYLOAD_SIZE 1024
|
||||
/* MAX_DOWNLOAD_DATA must be equal or bigger than:
|
||||
* MAX_PAYLOAD_SIZE + (len + header + options)
|
||||
* otherwise download size will be less than real size.
|
||||
*/
|
||||
#define MAX_DOWNLOAD_DATA (MAX_PAYLOAD_SIZE + 32)
|
||||
#define COAP_MAX_RETRY 3
|
||||
#define MAX_IP_SIZE 30
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
CONFIG_UPDATEHUB=y
|
||||
|
||||
#Minimal Heap mem pool size for the updatehub working
|
||||
CONFIG_HEAP_MEM_POOL_SIZE=2048
|
||||
CONFIG_HEAP_MEM_POOL_SIZE=8192
|
||||
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
|
||||
|
||||
CONFIG_NET_IPV4=y
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue