Skip to content

Commit 9130940

Browse files
committed
espulp: fix indentation
1 parent fb4da28 commit 9130940

File tree

1 file changed

+2
-2
lines changed
  • ports/espressif/common-hal/espulp

1 file changed

+2
-2
lines changed

ports/espressif/common-hal/espulp/ULP.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ void common_hal_espulp_ulp_run(espulp_ulp_obj_t *self, uint32_t *program, size_t
131131
}
132132

133133
void common_hal_espulp_ulp_halt(espulp_ulp_obj_t *self) {
134-
switch (self->arch) {
134+
switch (self->arch) {
135135
#ifdef CONFIG_ULP_COPROC_TYPE_FSM
136136
case FSM:
137137
ulp_timer_stop();
@@ -146,7 +146,7 @@ void common_hal_espulp_ulp_halt(espulp_ulp_obj_t *self) {
146146
default:
147147
mp_raise_NotImplementedError(NULL);
148148
break;
149-
}
149+
}
150150

151151
// Release pins we were using.
152152
for (uint8_t i = 0; i < 32; i++) {

0 commit comments

Comments
 (0)