[AVR] Removed unused register

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9273 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Fabio Utzig 2016-04-10 11:29:36 +00:00
parent 88a86b4f3f
commit c6da283acd
1 changed files with 0 additions and 2 deletions

View File

@ -114,8 +114,6 @@ void adc_lld_init(void) {
//prescaler 128, only value possible at 20Mhz, interrupt
ADCSRA = (1 << ADPS2) | (1 << ADPS1) | (1 << ADPS0) | (1 << ADIE);
ADCSRB = 0; //single shot
//uso aref, only valid for arduino. arduino ha aref collegato
ADMUX = (0 << REFS1) | (0 << REFS0);