More style fixes
This commit is contained in:
parent
89b2788d11
commit
a9074f7bd1
@ -43,9 +43,13 @@ static uint8_t pewpew_tc_index = 0xff;
|
|||||||
|
|
||||||
|
|
||||||
void pewpew_interrupt_handler(uint8_t index) {
|
void pewpew_interrupt_handler(uint8_t index) {
|
||||||
if (index != pewpew_tc_index) return;
|
if (index != pewpew_tc_index) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
Tc* tc = tc_insts[index];
|
Tc* tc = tc_insts[index];
|
||||||
if (!tc->COUNT16.INTFLAG.bit.MC0) return;
|
if (!tc->COUNT16.INTFLAG.bit.MC0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
pew_tick();
|
pew_tick();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user