Update comments in ADC header file
authorNathael Pajani <nathael.pajani@ed3l.fr>
Wed, 15 Feb 2023 00:08:25 +0000 (01:08 +0100)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Wed, 15 Feb 2023 00:08:25 +0000 (01:08 +0100)
include/drivers/adc.h

index 3e8e98b..027660a 100644 (file)
 #define NB_ADC_CHANNELS  8
 #define NB_ADC_SEQUENCES 1
 
+/* Only one sequence available on LPC122x */
 #define LPC_ADC_SEQ(x)  0
 
+/* For more readability when selecting a channel number */
+#define LPC_ADC(x)  (x)
+
 
 /* Read the conversion from the given channel
  * This function reads the conversion value directly in the data register and
@@ -124,9 +128,6 @@ struct lpc_adc
 #define LPC_ADC_OVERRUN    (0x01 << 30)
 #define LPC_ADC_CONV_DONE  (0x01 << 31)
 
-/* For more readability when selecting a channel number */
-#define LPC_ADC(x)    (x)
-
 
 #endif /* DRIVERS_ADC_H */