aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/CAN/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/STM32/CAN/main.c')
-rw-r--r--testhal/STM32/CAN/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32/CAN/main.c b/testhal/STM32/CAN/main.c
index 54517d0b4..21a04d4bf 100644
--- a/testhal/STM32/CAN/main.c
+++ b/testhal/STM32/CAN/main.c
@@ -36,7 +36,7 @@ static const CANConfig cancfg = {
/*
* Receiver thread.
*/
-static WORKING_AREA(can_rx_wa, 512);
+static WORKING_AREA(can_rx_wa, 256);
static msg_t can_rx(void *p) {
EventListener el;
CANRxFrame rxmsg;
@@ -58,7 +58,7 @@ static msg_t can_rx(void *p) {
/*
* Transmitter thread.
*/
-static WORKING_AREA(can_tx_wa, 512);
+static WORKING_AREA(can_tx_wa, 256);
static msg_t can_tx(void * p) {
CANTxFrame txmsg;