Skip to content

Commit 3a73b18

Browse files
committed
More pre-commit fixes.
1 parent bdc77c5 commit 3a73b18

File tree

1 file changed

+1
-1
lines changed
  • ports/analog/peripherals

1 file changed

+1
-1
lines changed

ports/analog/peripherals/pins.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ typedef struct {
2626

2727
extern const mp_obj_type_t mcu_pin_type;
2828

29-
#define PIN(pin_port, pin_mask) { {&mcu_pin_type}, .port = pin_port, .mask = 1UL<<pin_mask, .level = MXC_GPIO_VSSEL_VDDIO }
29+
#define PIN(pin_port, pin_mask) { {&mcu_pin_type}, .port = pin_port, .mask = 1UL << pin_mask, .level = MXC_GPIO_VSSEL_VDDIO }
3030

3131
// for non-connected pins
3232
#define NO_PIN 0xFF

0 commit comments

Comments
 (0)