Skip to content

Commit ff982d4

Browse files
committed
fix crash
1 parent 6460e7d commit ff982d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/connection/esb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ static void esb_packet_filter_thread(void);
4848
K_THREAD_DEFINE(esb_packet_filter_thread_id, 256, esb_packet_filter_thread, NULL, NULL, NULL, 6, 0, 0);
4949

5050
static void esb_thread(void);
51-
K_THREAD_DEFINE(esb_thread_id, 512, esb_thread, NULL, NULL, NULL, 6, 0, 0);
51+
K_THREAD_DEFINE(esb_thread_id, 1024, esb_thread, NULL, NULL, NULL, 6, 0, 0);
5252

5353
void event_handler(struct esb_evt const *event)
5454
{

src/console.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <zephyr/console/console.h>
3232
#include <zephyr/sys/reboot.h>
3333
#include <zephyr/logging/log_ctrl.h>
34-
#include "esb.h"
34+
#include "connection/esb.h"
3535

3636
#include <ctype.h>
3737

0 commit comments

Comments
 (0)