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