-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
testarduino::reset(); //to reset to a known state all features. Call between each tests.
void log(const char * iValue, ...);
testarduino::detachAllInterrupts();
testarduino::setPinValue(const uint8_t & pin, const uint16_t & value);
typedef void (*Callback)();
testarduino::attachFunctionCallback(const char * name, Callback c);
testarduino::detachFunctionCallback(const char * name, Callback c);
struct Interrupt
{
ISR _func;
uint8_t mode; //CHANGE, FALLING, RISING
};
typedef std::vector<Interrupt> InterruptList;
//define PIN
struct PIN_REGISTRY
{
uint16_t value; //10 bits to support analog values
InterruptList interrupts;
};Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request