From 441d1f9545b09c4a0265f3874cb604de6c54f704 Mon Sep 17 00:00:00 2001 From: Philipp Klaus Date: Fri, 2 Jun 2017 13:31:22 +0200 Subject: [PATCH] Pt100: state filename in header of *.h/*.c files --- pt100/ads_adc.h | 2 +- pt100/eeprom.c | 2 ++ pt100/keys.c | 2 ++ pt100/main.c | 2 ++ pt100/main.h | 2 ++ pt100/tempmeas.c | 2 ++ pt100/uart.c | 1 + 7 files changed, 12 insertions(+), 1 deletion(-) diff --git a/pt100/ads_adc.h b/pt100/ads_adc.h index 71a2732..c39a61c 100644 --- a/pt100/ads_adc.h +++ b/pt100/ads_adc.h @@ -1,4 +1,4 @@ - +/* ads_adc .h */ //// ADC ADS1018 Definitions // SS "Single-shot conversion start" diff --git a/pt100/eeprom.c b/pt100/eeprom.c index 9ae56e5..83a2dbe 100644 --- a/pt100/eeprom.c +++ b/pt100/eeprom.c @@ -1,3 +1,5 @@ +/* eeprom.c */ + #include diff --git a/pt100/keys.c b/pt100/keys.c index 3d49b5b..509dc47 100644 --- a/pt100/keys.c +++ b/pt100/keys.c @@ -1,3 +1,5 @@ +/* keys.c */ + #include "main.h" diff --git a/pt100/main.c b/pt100/main.c index 70e84f1..75d614a 100644 --- a/pt100/main.c +++ b/pt100/main.c @@ -1,3 +1,5 @@ +/* main.c */ + #include "main.h" #include "lcdlib/lcd-color-graphic.h" #include "lcdlib/font.h" diff --git a/pt100/main.h b/pt100/main.h index d69cdb6..db0b10c 100644 --- a/pt100/main.h +++ b/pt100/main.h @@ -1,3 +1,5 @@ +/* main.h */ + #include #include #include diff --git a/pt100/tempmeas.c b/pt100/tempmeas.c index cadfc3c..fdaaa40 100644 --- a/pt100/tempmeas.c +++ b/pt100/tempmeas.c @@ -1,3 +1,5 @@ +/* tempmeas.c */ + #include "main.h" #include "ads_adc.h" diff --git a/pt100/uart.c b/pt100/uart.c index dd6994b..8deb8d9 100644 --- a/pt100/uart.c +++ b/pt100/uart.c @@ -1,3 +1,4 @@ +/* uart.c */ //all data is in hex format //b: Board ID -- -- 2.43.0