Merge pull request #18 from Bengt/use-correct-degrees-celsius-symbol

Correct symbol for degrees Celsius
This commit is contained in:
Ole Algoritme
2023-10-15 22:40:01 +02:00
committed by GitHub

View File

@@ -190,7 +190,7 @@ int main(int argc, char **argv)
read_result = *((uint32_t *) virt_addr);
temp = ((read_result & 0x00000fff) / 0x20);
printf(" %3u°c |", temp);
printf(" %3u°C |", temp);
}
fflush(stdout);
sleep(1);