]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Add empty timer functions
authorFred Sundvik <fsundvik@gmail.com>
Fri, 16 Jun 2017 18:51:40 +0000 (21:51 +0300)
committerFred Sundvik <fsundvik@gmail.com>
Sun, 18 Jun 2017 18:10:42 +0000 (21:10 +0300)
tmk_core/common/native/timer.c

index 01d1930ea502e723e7d954fb9666db71b65a9990..e21cd7d555e39877856dfab2c784f99cf57a7553 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "timer.h"
+
+void timer_init(void) {}
+
+void timer_clear(void) {}
+
+uint16_t timer_read(void) { return 0; }
+uint32_t timer_read32(void) { return 0; }
+uint16_t timer_elapsed(uint16_t last) { return 0; }
+uint32_t timer_elapsed32(uint32_t last) { return 0; }