20 lines
279 B
C++
20 lines
279 B
C++
// Provides hookable implementations for the mock headers
|
|
#include "Arduino.h"
|
|
|
|
void digitalWrite( uint32_t dwPin, uint32_t dwVal )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void pinMode( uint32_t dwPin, uint32_t dwMode )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, uint8_t val)
|
|
{
|
|
|
|
}
|