From 44941072dc4dceb45746aae811bb3b6b7812cd03 Mon Sep 17 00:00:00 2001 From: uncrustify Date: Thu, 16 Aug 2012 22:39:21 -0700 Subject: [PATCH] uncrustify libraries/AP_ADC/AP_ADC_ADS7844.h --- libraries/AP_ADC/AP_ADC_ADS7844.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libraries/AP_ADC/AP_ADC_ADS7844.h b/libraries/AP_ADC/AP_ADC_ADS7844.h index c62004bee4..66098a7994 100644 --- a/libraries/AP_ADC/AP_ADC_ADS7844.h +++ b/libraries/AP_ADC/AP_ADC_ADS7844.h @@ -20,21 +20,21 @@ class AP_ADC_ADS7844 : public AP_ADC { - public: - AP_ADC_ADS7844(); // Constructor - void Init( AP_PeriodicProcess * scheduler ); +public: + AP_ADC_ADS7844(); // Constructor + void Init( AP_PeriodicProcess * scheduler ); - // Read 1 sensor value - float Ch(unsigned char ch_num); + // Read 1 sensor value + float Ch(unsigned char ch_num); - // Read 6 sensors at once - uint32_t Ch6(const uint8_t *channel_numbers, float *result); + // Read 6 sensors at once + uint32_t Ch6(const uint8_t *channel_numbers, float *result); // check if Ch6 would block - bool new_data_available(const uint8_t *channel_numbers); + bool new_data_available(const uint8_t *channel_numbers); - private: - static void read(uint32_t); +private: + static void read(uint32_t); };