Browse Source

Fix timers.h include

Scott Lahteine 5 years ago
parent
commit
ac2d7ab14c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/HAL/HAL_STM32/SoftwareSerial.cpp

+ 1
- 1
Marlin/src/HAL/HAL_STM32/SoftwareSerial.cpp View File

35
 // Includes
35
 // Includes
36
 //
36
 //
37
 #include "SoftwareSerial.h"
37
 #include "SoftwareSerial.h"
38
-#include <timer.h>
38
+#include "timers.h"
39
 
39
 
40
 #define OVERSAMPLE 3 // in RX, Timer will generate interruption OVERSAMPLE time during a bit. Thus OVERSAMPLE ticks in a bit. (interrupt not synchonized with edge).
40
 #define OVERSAMPLE 3 // in RX, Timer will generate interruption OVERSAMPLE time during a bit. Thus OVERSAMPLE ticks in a bit. (interrupt not synchonized with edge).
41
 
41
 

Loading…
Cancel
Save