Coder Social home page Coder Social logo

Comments (8)

Rahix avatar Rahix commented on June 30, 2024

Transferred this issue to the avr-device project...

It seems the register information is incorrect here. The way to fix is this adding a YAML patch to correct it. For example, here we have a patch which sets a field read-only:

PLL:
PLLCSR:
_modify:
PLOCK:
access: read-only

we'd need a similar patch to set this field to read-write in the patch file for the MCU you are using. Can you try sending a pull request for this? If you need more guidance, just let me know!

from avr-device.

mgrunwald avatar mgrunwald commented on June 30, 2024

Can you try sending a pull request for this? If you need more guidance, just let me know!

Thanks, @Rahix! I'll have a look and see what I can do.

from avr-device.

mgrunwald avatar mgrunwald commented on June 30, 2024

@Rahix I don't think that it's a read/write issue, but that the fields are missing. Compare with GIMSK from attiny85.svd:

        <register>
          <name>GIMSK</name>
          <description>General Interrupt Mask Register</description>
          <addressOffset>0x26</addressOffset>
          <size>0x8</size>
          <access>read-write</access>
          <fields>
            <field>
              <name>PCIE</name>
              <description>Pin Change Interrupt Enable</description>
              <bitRange>[5:5]</bitRange>
              <access>read-write</access>
            </field>
            <field>
              <name>INT0</name>
              <description>External Interrupt Request 0 Enable</description>
              <bitRange>[6:6]</bitRange>
              <access>read-write</access>
            </field>
          </fields>
        </register>

PCMSK has no fields:

        <register>
          <name>PCMSK</name>
          <description>Pin Change Enable Mask</description>
          <addressOffset>0x0</addressOffset>
          <size>0x8</size>
          <access>read-write</access>
          <writeConstraint>
            <range>
              <minimum>0</minimum>
              <maximum>255</maximum>
            </range>
          </writeConstraint>
        </register>

So I tried to patch PCMSK by adding this to the end of patch/attiny85.yaml:

  PCMSK:
    _add:
      PCINT0:
        description: Enable pin change interrupt on pin 0
        bitOffset: 0
        bitWidth: 1
        access: read-write
      PCINT1:
        description: Enable pin change interrupt on pin 1
        bitOffset: 1
        bitWidth: 1
        access: read-write
      PCINT2:
        description: Enable pin change interrupt on pin 2
        bitOffset: 2
        bitWidth: 1
        access: read-write
      PCINT3:
        description: Enable pin change interrupt on pin 3
        bitOffset: 3
        bitWidth: 1
        access: read-write
      PCINT4:
        description: Enable pin change interrupt on pin 4
        bitOffset: 4
        bitWidth: 1
        access: read-write
      PCINT5:
        description: Enable pin change interrupt on pin 5
        bitOffset: 5
        bitWidth: 1
        access: read-write

Unfortunately that doesn't work and I don't get why:

  File "/home/markus/.virtualenvs/avr-device/lib/python3.11/site-packages/svdtools/patch.py", line 1229, in process_register
    raise MissingRegisterError(f"Could not find {pname}:{rspec}")
svdtools.patch.MissingRegisterError: Could not find CPU:PCMSK

I can modify PLLCSR from the same patch file without problems, but PCMSK isn't found. I'd appreciate any help!

from avr-device.

Rahix avatar Rahix commented on June 30, 2024

Could not find CPU:PCMSK

It's looking for PCMSK in the CPU peripheral but the register is actually in the EXINT peripheral. Try like this:

EXINT:
  PCMSK:
    _add:
      PCINT0:
        ...

from avr-device.

mgrunwald avatar mgrunwald commented on June 30, 2024

Thanks, that worked :)

Currently the PCMSK has a write constraint:

        <register>
          <name>PCMSK</name>
          …
          <writeConstraint>
            <range>
              <minimum>0</minimum>
              <maximum>255</maximum>
            </range>
          </writeConstraint>

Since the two most significant bits are reserved, I'd like to change the write constraint to 63 max, but again, I fail:

EXINT:
  _modify:
    PCMSK:
      _write_constraint: [0, 63]
svdtools.patch.UnknownTagError: ('register', '_write_constraint')

I think this should work, according to the svdtools docs. Can you please show me my mistake once more?

Apart from that , the PR would be ready.

from avr-device.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.