Skip to content

adc_set_resolution bug #129

@avsteele

Description

@avsteele

in adc.c:

void adc_set_resolution(Adc *p_adc,const enum adc_resolution_t resolution)
{
	p_adc->ADC_MR |= (resolution << 4) & ADC_MR_LOWRES;
}

is incorrect. The RHS always evaluates to 0 since the valid values of enum adc_resolution_t as seen in adc.h are 0 (ADC_12_BITS), or 16 (ADC_10_BITS)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions