Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
C
Controller
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
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
Package Registry
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
Guardians of the Kretschmar Elock System
Controller
Commits
a315b56f
Commit
a315b56f
authored
Aug 13, 2020
by
Jacob Priddy
👌
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix stack size for api thread
parent
32284b89
Pipeline
#12558
passed with stages
in 1 minute and 35 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
main/main.c
main/main.c
+2
-2
version.txt
version.txt
+1
-1
No files found.
main/main.c
View file @
a315b56f
...
...
@@ -99,13 +99,13 @@ void start(void)
{
// Processing HTTP request and getting codes back is probably the most important
// for noticable responsiveness
xTaskCreate
(
door_api_handle_requests_task
,
"api_task"
,
4096
,
NULL
,
7
,
NULL
);
xTaskCreate
(
door_api_handle_requests_task
,
"api_task"
,
10240
,
NULL
,
7
,
NULL
);
xTaskCreate
(
door_latch_watch_task
,
"latch_task"
,
4096
,
NULL
,
4
,
NULL
);
xTaskCreate
(
door_lock_task
,
"lock_task"
,
4096
,
NULL
,
6
,
NULL
);
xTaskCreate
(
door_keypad_scan_task
,
"keypad_task"
,
4096
,
NULL
,
6
,
NULL
);
xTaskCreate
(
door_state_task
,
"state_task"
,
4096
,
NULL
,
5
,
NULL
);
xTaskCreate
(
update_task
,
"update_task"
,
4096
,
NULL
,
2
,
NULL
);
xTaskCreate
(
update_task
,
"update_task"
,
8192
,
NULL
,
2
,
NULL
);
// xTaskCreate(check_code_task, "http_task", 4096, NULL, 3, NULL);
xTaskCreate
(
door_status_refresh_task
,
"refresh_task"
,
4096
,
NULL
,
5
,
NULL
);
xTaskCreate
(
door_status_sync_status_task
,
"sync_task"
,
10240
,
NULL
,
4
,
NULL
);
...
...
version.txt
View file @
a315b56f
1.0.1.0
\ No newline at end of file
1.0.2.0
\ No newline at end of file
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