summaryrefslogtreecommitdiff
path: root/ports/esp32s2/common-hal/canio/CAN.h
diff options
context:
space:
mode:
Diffstat (limited to 'ports/esp32s2/common-hal/canio/CAN.h')
-rw-r--r--ports/esp32s2/common-hal/canio/CAN.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ports/esp32s2/common-hal/canio/CAN.h b/ports/esp32s2/common-hal/canio/CAN.h
index 85fb6972b..82f30bc6f 100644
--- a/ports/esp32s2/common-hal/canio/CAN.h
+++ b/ports/esp32s2/common-hal/canio/CAN.h
@@ -42,8 +42,8 @@ typedef struct canio_can_obj {
int baudrate;
const mcu_pin_obj_t *rx_pin;
const mcu_pin_obj_t *tx_pin;
- bool loopback:1;
- bool silent:1;
- bool auto_restart:1;
- bool fifo_in_use:1;
+ bool loopback : 1;
+ bool silent : 1;
+ bool auto_restart : 1;
+ bool fifo_in_use : 1;
} canio_can_obj_t;