Fix wrong header name in main.c
This commit is contained in:
parent
e6ec28b04c
commit
78a8b62142
@ -3,14 +3,6 @@
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#ifndef F_CPU
|
||||
#define F_CPU 1000000UL
|
||||
#endif
|
||||
|
||||
#ifdef DEBUG
|
||||
#include "debug.h"
|
||||
#endif /* DEBUG */
|
||||
|
||||
void read_temp(void);
|
||||
|
||||
#endif
|
||||
|
11
src/main.c
11
src/main.c
@ -1,12 +1,21 @@
|
||||
#include <avr/io.h>
|
||||
#include <avr/interrupt.h>
|
||||
#include <util/delay.h>
|
||||
#include "ds18b20.h"
|
||||
#include "temperature.h"
|
||||
#include "led.h"
|
||||
#include "servos.h"
|
||||
#include "sonar.h"
|
||||
#include "main.h"
|
||||
|
||||
#ifdef DEBUG
|
||||
#include "debug.h"
|
||||
#endif /* DEBUG */
|
||||
|
||||
#ifndef F_CPU
|
||||
#define F_CPU 1000000UL
|
||||
#endif
|
||||
|
||||
|
||||
void read_temp(void)
|
||||
{
|
||||
double d;
|
||||
|
Loading…
Reference in New Issue
Block a user