removed old code
This commit is contained in:
parent
f57eae9624
commit
4544fcdb8f
7 changed files with 0 additions and 149 deletions
|
|
@ -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
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
cd $(dirname "$0")
|
||||
|
||||
./prober.elf &> ./log.txt
|
||||
|
|
@ -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)
|
||||
|
|
@ -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");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue