User profile: cmisip

User info
User name:cmisip
History
Joined:
Number of posts:184
Latest posts:

How do I create an array of templated class as members of another class
Thanks a lot for all the pointers. I have to admit that at this time template metaprogramming is re...

How do I create an array of templated class as members of another class
I think I understand now why the author of DirectIO hardcoded the registers in : https://github.com...

How do I create an array of templated class as members of another class
I did some benchmarking. The values are in microseconds showing several iterations. [code] DirectIO...

How do I create an array of templated class as members of another class
I created this Pin class: [code]class Pin { public: uint8_t pin; uint8_t bit; uint8_t port; ...

How do I create an array of templated class as members of another class
This is my solution, unless anyone can propose a better one: [code]#include <DirectIO.h> #include <...