File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -248,13 +248,13 @@ void mp_hal_delay_us(mp_uint_t delay) {
248
248
static irqflags_t irq_flags ;
249
249
250
250
void mp_hal_disable_all_interrupts (void ) {
251
- // Disable all interrupt sources for timing critical sections.
252
- // Disable ASF-based interrupts.
253
- irq_flags = cpu_irq_save ();
251
+ // Disable all interrupt sources for timing critical sections.
252
+ // Disable ASF-based interrupts.
253
+ irq_flags = cpu_irq_save ();
254
254
}
255
255
256
256
void mp_hal_enable_all_interrupts (void ) {
257
- // Enable all interrupt sources after timing critical sections.
258
- // Restore ASF-based interrupts.
259
- cpu_irq_restore (irq_flags );
257
+ // Enable all interrupt sources after timing critical sections.
258
+ // Restore ASF-based interrupts.
259
+ cpu_irq_restore (irq_flags );
260
260
}
You can’t perform that action at this time.
0 commit comments