Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
firmware
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Arist
firmware
Commits
cf31d0a0
Commit
cf31d0a0
authored
Aug 23, 2019
by
schneider
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hack(ble): increase buffer amount
parent
5b351e65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
epicardium/ble/ble.c
epicardium/ble/ble.c
+8
-7
No files found.
epicardium/ble/ble.c
View file @
cf31d0a0
...
...
@@ -16,8 +16,9 @@
#include <string.h>
#include <stdbool.h>
#define FACTOR 2
#define WSF_BUF_POOLS 6
#define WSF_BUF_SIZE
0x1048
#define WSF_BUF_SIZE
(0x1048 * FACTOR)
uint32_t
SystemHeapSize
=
WSF_BUF_SIZE
;
uint32_t
SystemHeap
[
WSF_BUF_SIZE
/
4
];
...
...
@@ -30,12 +31,12 @@ static TaskHandle_t ble_task_id = NULL;
/* clang-format off */
static
wsfBufPoolDesc_t
mainPoolDesc
[
WSF_BUF_POOLS
]
=
{
{
16
,
8
},
{
32
,
4
},
{
64
,
4
},
{
128
,
4
},
{
256
,
4
},
{
512
,
4
}
{
16
,
8
*
FACTOR
},
{
32
,
4
*
FACTOR
},
{
64
,
4
*
FACTOR
},
{
128
,
4
*
FACTOR
},
{
256
,
4
*
FACTOR
},
{
512
,
4
*
FACTOR
}
};
/* clang-format on */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment