memory savings

This commit is contained in:
Matthew Kennedy 2022-12-02 02:07:21 -08:00
parent f654cbd14b
commit 320efe05a5
4 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@
static adcsample_t adcBuffer[ADC_CHANNEL_COUNT * ADC_OVERSAMPLE];
ADCConversionGroup convGroup =
const ADCConversionGroup convGroup =
{
false,
ADC_CHANNEL_COUNT,

View File

@ -10,7 +10,7 @@
static adcsample_t adcBuffer[ADC_CHANNEL_COUNT * ADC_OVERSAMPLE];
ADCConversionGroup convGroup =
const ADCConversionGroup convGroup =
{
.circular = false,
.num_channels = ADC_CHANNEL_COUNT,

View File

@ -10,7 +10,7 @@
static adcsample_t adcBuffer[ADC_CHANNEL_COUNT * ADC_OVERSAMPLE];
ADCConversionGroup convGroup =
const ADCConversionGroup convGroup =
{
.circular = false,
.num_channels = ADC_CHANNEL_COUNT,

View File

@ -7,7 +7,7 @@
static adcsample_t adcBuffer[ADC_CHANNEL_COUNT * ADC_OVERSAMPLE];
ADCConversionGroup convGroup =
const ADCConversionGroup convGroup =
{
.circular = false,
.num_channels = ADC_CHANNEL_COUNT,