Skip to content
Snippets Groups Projects
Commit 414408b2 authored by Daid's avatar Daid
Browse files

Fix for wrong systax in #ifdef.

parent cf7c8c45
Branches
Tags
No related merge requests found
...@@ -923,7 +923,7 @@ ISR(TIMER0_COMPB_vect) ...@@ -923,7 +923,7 @@ ISR(TIMER0_COMPB_vect)
if(temp_count >= 16) // 8 ms * 16 = 128ms. if(temp_count >= 16) // 8 ms * 16 = 128ms.
{ {
#ifdef HEATER_0_USES_AD595 || defined HEATER_0_USES_MAX6675 #if defined(HEATER_0_USES_AD595) || defined(HEATER_0_USES_MAX6675)
current_raw[0] = raw_temp_0_value; current_raw[0] = raw_temp_0_value;
#else #else
current_raw[0] = 16383 - raw_temp_0_value; current_raw[0] = 16383 - raw_temp_0_value;
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment