Would you like to react to this message? Create an account in a few clicks or log in to continue.

You are not connected. Please login or register

ADCH/ADCL warning for mega328PB R1185@WIN10

2 posters

Go down  Message [Page 1 of 1]

TimFisch

TimFisch

When inserting the mega328PB in the R1185 in the canvas the following info appears:

Warning: Register not found: ADCL
Warning: Register not found: ADCH



Last edited by arcachofo on Wed May 18, 2022 1:22 am; edited 1 time in total (Reason for editing : Mark as solved (green color))

https://wiki.mexle.hs-heilbronn.de/

arcachofo

arcachofo

Solved at Rev 1194.

You can solve it in your files.
There is an error in data/AVR/megax8/megax8pb_regs.xml (line 164):

Code:
    <register  name="ADCL0"    addr="0x0078"  reset=""  mask="00000000"
               bits="ADCL0,ADCL1,ADCL2,ADCL3,ADCL4,ADCL5,ADCL6,ADCL7" />

    <register  name="ADCL1"    addr="0x0078"  reset=""  mask="00000000"
               bits="ADCL0,ADCLq,0,0,0,0,0,0" />

    <register  name="ADCH0"    addr="0x0079"  reset=""  mask="00000000"
               bits="ADCH8,ADCH9,0,0,0,0,0,0" />

    <register  name="ADCH1"    addr="0x0079"  reset=""  mask="00000000"
               bits="ADCH2,ADCH3,ADCH4,ADCH5,ADCH6,ADCH7,ADCH8,ADCH9" />


Should be:

Code:
    <register  name="ADCL"    addr="0x0078"  reset=""  mask="00000000"
               bits="ADCL0,ADCL1,ADCL2,ADCL3,ADCL4,ADCL5,ADCL6,ADCL7" />

    <register  name="ADCH"    addr="0x0079"  reset=""  mask="00000000"
               bits="ADCH8,ADCH9,0,0,0,0,0,0" />

TimFisch likes this post

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum