Giter Site home page Giter Site logo

ATSAMD21 about erriezrotaryencoderfullstep HOT 5 CLOSED

koogar avatar koogar commented on August 9, 2024
ATSAMD21

from erriezrotaryencoderfullstep.

Comments (5)

Erriez avatar Erriez commented on August 9, 2024

Hi @koogar,

Thanks for your request. I did not test the ATSAMD family as I do not have such processor. I do not expect platform specific differences as the library uses common API calls.

I tried to build the full step interrupt example for a Arduino M0 board and give an error:

D:\Arduino\libraries\ErriezRotaryEncoderFullStep\src\ErriezRotaryFullStep.cpp:36:10: fatal error: pgmspace.h: No such file or directory
 #include <pgmspace.h>
          ^~~~~~~~~~~~
compilation terminated.

This can be solved by changing the code below in ErriezRotaryEncoderFullStep\src\ErriezRotaryFullStep.cpp:

#if defined(__AVR__) || defined(ARDUINO_ARCH_SAMD)
#include <avr/pgmspace.h>
#else
#include <pgmspace.h>
#endif

Can you give it a try?

Thanks,
Erriez

from erriezrotaryencoderfullstep.

Erriez avatar Erriez commented on August 9, 2024

@koogar Did you try this library on your ATSAMD target?

from erriezrotaryencoderfullstep.

koogar avatar koogar commented on August 9, 2024

Hi Erriez,

Sorry for the late reply I have only just had time to try it.
yes it did work, thanks for your time

from erriezrotaryencoderfullstep.

koogar avatar koogar commented on August 9, 2024

Hi Erriez,

I also have it working on a SMT32F1 by changing the .CPP,

#if (defined(__SAM3X8E__) || defined(__STM32F1__))

to combine the ATSAMD and the STM32 would this be the correct way of doing it in the .CPP

#if ((defined(__AVR__) || defined(ARDUINO_ARCH_SAMD)) or (__SAM3X8E__) || defined(__STM32F1__))
#include <avr/pgmspace.h>
#else
#include <pgmspace.h>
#endif

Cheers

Rupert

from erriezrotaryencoderfullstep.

Erriez avatar Erriez commented on August 9, 2024

@koogar Thanks for your feedback and patient. I've created a new release with SAMD21 and STM32F1 support.

from erriezrotaryencoderfullstep.

Related Issues (2)

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.