Skip to content

Commit

Permalink
removed some (unused) references from src to hardware
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausMu committed Dec 23, 2024
1 parent e6a993b commit 07eeef8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Platformio/src/applicationInternal/hardware/arduinoLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#include <stdarg.h>
#include <stdio.h>
#include <sys/time.h>
//#include "sdl/sdl.h"

long long current_timestamp() {
struct timeval te;
Expand All @@ -15,8 +14,6 @@ long long current_timestamp() {
}

void delay(uint32_t ms) {
// we don't use this blackbox
// SDL_Delay(ms);
unsigned long startTimer = millis();
while ((millis() - startTimer) < ms) {
}
Expand Down

0 comments on commit 07eeef8

Please sign in to comment.