Fix some AVR HAL code style

This commit is contained in:
Scott Lahteine
2017-10-14 19:05:10 -05:00
parent 799360c576
commit fd128b3c93
17 changed files with 60 additions and 53 deletions

View File

@@ -20,8 +20,8 @@
*
*/
#ifndef WATCHDOG_AVR_H
#define WATCHDOG_AVR_H
#ifndef _WATCHDOG_AVR_H_
#define _WATCHDOG_AVR_H_
#include <avr/wdt.h>
@@ -32,4 +32,4 @@ void watchdog_init();
// first watchdog_init or AVR will go into emergency procedures.
inline void watchdog_reset() { wdt_reset(); }
#endif // WATCHDOG_AVR_H
#endif // _WATCHDOG_AVR_H_