Skip to content

Commit df86e3e

Browse files
committed
More pre-commit fixes.
1 parent a8ba80f commit df86e3e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • ports/analog/peripherals

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)