Skip to content

naylom/MNPWMLib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MNPWMLib

A PWM library for Arduino mkr wifi 1010.
Supports generating a Normal PWM (aka single slope, aka Fast PWM) signal on any digital pin D0 - D9.
Based off a 48Mhz clock.
User can optionally provide a callback routine to be called when PWM duty limit hit.
User can optionally provide a callback routine to be called each time the PWM top value is reached.
User supplies a prescalar, top and duty value.
Library has a function to calculate best prescalar and top values if needed.

Note: this code uses attachInterruptParam. There is a known issue in the arduino 1.8.13 release for SAMD where this function is in the standard include libraries but not included in the actual libraries that are linked. This will cause an unresolved linkage error.
This has a fix but is not yet released, see:
arduino/ArduinoCore-samd#667
arduino/ArduinoCore-samd#624

To fix this either wait for the next release and check it is resolved or pro tem replace the Winterrupts.cpp file with the fixed version.

The resolved version can be found here:
https://github.com/arduino/ArduinoCore-samd/blob/9a67d2d1ffa281328ba6965fe6d9f6245e18df5c/cores/arduino/WInterrupts.c

Assuming you have installed arduino for your own user, this should replace the version installed as part of 1.8.13 on your local machine at
C:\Users\[your username]\AppData\Local\Arduino15\packages\arduino\hardware\samd\1.8.13\cores\arduino