Fix wrong header name in main.c

This commit is contained in:
Rihards Skuja 2018-01-02 14:22:26 +02:00
parent e6ec28b04c
commit 78a8b62142
No known key found for this signature in database
GPG Key ID: 53FA13A3F7F8571B
2 changed files with 10 additions and 9 deletions

View File

@ -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

View File

@ -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;