Attiny1614 equivilent ADCSRA register?

Hi,

I have this peice of code that is toggling some registers on my Arduino Nano. When I change my target platform to an Attiny1614 these registers are "not delcared" so I am assuming are not named the same on the Attiny. I am looking for some guidance on how to find the euivilent of these register on the Attiny. I have looked on the datasheet and I did find something like this, I am probably not looking in the correct spot.

Would there be a equvilent I just need to find or is this just not going to be compatible with this chip? This is to set the frequency of the ADC to 77khz and 10 bit

  sbi(ADCSRA,ADPS2);
    cbi(ADCSRA,ADPS1);
    cbi(ADCSRA,ADPS0);

Thanks for the help

Page 489 defines all the bits in register Control C (CTRLC) and the bottom 3 bits look like they change the ADC clock.
Control A register on page 487 specifies the bit for 8 or 10 bit resolution

datasheet

blh64:
Page 489 defines all the bits in register Control C (CTRLC) and the bottom 3 bits look like they change the ADC clock.
Control A register on page 487 specifies the bit for 8 or 10 bit resolution

datasheet

thank you :slight_smile: