Skip to content

Commit

Permalink
0.5.2 reduced stack sizes of tasks target and logsend
Browse files Browse the repository at this point in the history
xTaskCreate(udplog_send, "logsend", 320, NULL, prio, NULL);
  • Loading branch information
HomeACcessoryKid committed Aug 15, 2020
1 parent a4c55e1 commit 29d3922
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
* Some credit goes to the softuart writers on which this is loosly based

## Change history
### 0.5.2 reduced stack sizes of tasks target and logsend

### 0.5.1 reduced various stack sizes of tasks

### 0.5.0 added task statistics readout for high water mark of various tasks
Expand Down
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ void alarm_init() {
send_ok = xSemaphoreCreateBinary();
acked = xSemaphoreCreateBinary();
xTaskCreate(receive_task, "receive", 256, NULL, 2, NULL);
xTaskCreate( target_task, "target", 256, NULL, 3, NULL);
xTaskCreate( target_task, "target", 192, NULL, 3, NULL);
timerNcallback(1);
timerNcallback(2);
timerNcallback(3);
Expand Down

0 comments on commit 29d3922

Please sign in to comment.