mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-21 10:26:06 +03:00
42 lines
1.0 KiB
C++
42 lines
1.0 KiB
C++
/*
|
|
Arduino.cpp - Mocks for common Arduino APIs
|
|
Copyright © 2016 Ivan Grokhotkov
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
*/
|
|
|
|
#define CATCH_CONFIG_MAIN
|
|
#include <catch.hpp>
|
|
#include <sys/time.h>
|
|
#include "Arduino.h"
|
|
|
|
|
|
extern "C" unsigned long millis()
|
|
{
|
|
timeval time;
|
|
gettimeofday(&time, NULL);
|
|
return (time.tv_sec * 1000) + (time.tv_usec / 1000);
|
|
}
|
|
|
|
|
|
extern "C" void yield()
|
|
{
|
|
}
|
|
|
|
|
|
extern "C" void __panic_func(const char* file, int line, const char* func) {
|
|
abort();
|
|
}
|
|
|
|
extern "C" void delay(unsigned long ms)
|
|
{
|
|
}
|