From 7626f97ab3d30e970be40f07172a789bf947f0d3 Mon Sep 17 00:00:00 2001 From: joeycastillo Date: Wed, 18 Sep 2024 18:21:16 +0000 Subject: [PATCH] deploy: 9296c4055c35049fc29cb51c3bc1f7f8a4cf14df --- adc_8h.html | 12 ++++---- adc_8h_source.html | 10 +++---- eic_8h.html | 65 ++++++++++++++++++++-------------------- eic_8h_source.html | 24 +++++++-------- globals.html | 12 ++++---- globals_func.html | 12 ++++---- hal__gpio_8h_source.html | 4 +-- search/all_2.js | 2 +- search/all_6.js | 10 +++---- search/functions_1.js | 2 +- search/functions_3.js | 10 +++---- 11 files changed, 82 insertions(+), 81 deletions(-) diff --git a/adc_8h.html b/adc_8h.html index 5f44ab8..b70c330 100644 --- a/adc_8h.html +++ b/adc_8h.html @@ -99,9 +99,9 @@ void adc_set_sampling_length (uint8_t length)  Sets the sampling length for the ADC.
  -uint16_t adc_get_analog_value (uint16_t pin) - Gets the analog value on the given ADC pin.
-  +uint16_t adc_get_analog_value (uint8_t pin) + Gets the analog value on the given ADC pin.
+  uint16_t adc_get_analog_value_for_channel (uint8_t channel)  Gets the analog value on the given ADC channel.
  @@ -113,8 +113,8 @@

Detailed Description

Analog to Digital Converter.

Function Documentation

- -

◆ adc_get_analog_value()

+ +

◆ adc_get_analog_value()

@@ -122,7 +122,7 @@

uint16_t adc_get_analog_value ( - uint16_t  + uint8_t  pin) diff --git a/adc_8h_source.html b/adc_8h_source.html index dd00262..7edc783 100644 --- a/adc_8h_source.html +++ b/adc_8h_source.html @@ -119,17 +119,17 @@
58
68void adc_set_sampling_length(uint8_t length);
69
-
76uint16_t adc_get_analog_value(uint16_t pin);
+
76uint16_t adc_get_analog_value(uint8_t pin);
77
83uint16_t adc_get_analog_value_for_channel(uint8_t channel);
84
88void adc_disable(void);
void adc_set_sampling_length(uint8_t length)
Sets the sampling length for the ADC.
Definition adc.c:75
uint16_t adc_get_analog_value_for_channel(uint8_t channel)
Gets the analog value on the given ADC channel.
Definition adc.c:81
-
void adc_init(void)
Initializes the ADC peripheral, but does not enable it.
Definition adc.c:103
-
uint16_t adc_get_analog_value(uint16_t pin)
Gets the analog value on the given ADC pin.
Definition adc.c:93
-
void adc_enable(void)
Enables the ADC peripheral.
Definition adc.c:184
-
void adc_disable(void)
Disables the ADC peripheral.
Definition adc.c:191
+
void adc_init(void)
Initializes the ADC peripheral, but does not enable it.
Definition adc.c:102
+
void adc_enable(void)
Enables the ADC peripheral.
Definition adc.c:183
+
void adc_disable(void)
Disables the ADC peripheral.
Definition adc.c:190
+
uint16_t adc_get_analog_value(uint8_t pin)
Gets the analog value on the given ADC pin.
Definition adc.c:93