removed old code

This commit is contained in:
Shaun Inman 2023-02-04 20:25:50 -05:00
parent f57eae9624
commit 4544fcdb8f
7 changed files with 0 additions and 149 deletions

View file

@ -1,7 +0,0 @@
#!/bin/sh
cd $(dirname "$0")
# date --help
# date +'%F %T'
# date -u -s "2023-01-14 01:51:00"; hwclock --utc -w

View file

@ -1,5 +0,0 @@
#!/bin/sh
cd $(dirname "$0")
./prober.elf &> ./log.txt

View file

@ -1,15 +0,0 @@
ifeq (,$(CROSS_COMPILE))
$(error missing CROSS_COMPILE for this toolchain)
endif
TARGET = Probe.pak/prober.elf
CC = $(CROSS_COMPILE)gcc
CFLAGS = -marm -mtune=cortex-a9 -mfpu=neon-vfpv4 -mfloat-abi=hard -march=armv7-a -fomit-frame-pointer
CFLAGS += -I.
# LDFLAGS = -ldl -lSDL -lSDL_image -lSDL_ttf
all:
$(CC) prober.c -o $(TARGET) $(CFLAGS) $(LDFLAGS)
clean:
rm -f $(TARGET)

View file

@ -1,16 +0,0 @@
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <dirent.h>
#include <ctype.h>
#include <unistd.h>
#include <fcntl.h>
///////////////////////////////////////
#include <sys/time.h>
int main (int argc, char *argv[]) {
system("./exec.sh");
}