first milestone reached

This commit is contained in:
Tonton Th
2026-05-27 16:25:47 +02:00
parent 2b13f88f87
commit aa226bb38e
17 changed files with 197 additions and 31 deletions

10
Code/rover/Makefile Normal file
View File

@@ -0,0 +1,10 @@
#
# FUTILITY ONBORARD SOFTWARE
#
DEPS = ../common/protocol.o ../common/protocol.h
futility: futility.o $(DEPS) Makefile
gcc -Wall $< -o $@

BIN
Code/rover/futility Executable file

Binary file not shown.

22
Code/rover/futility.c Normal file
View File

@@ -0,0 +1,22 @@
/*
* MYRYS ROVER --- FUTILITY
*
* new Today is Boomtime, the 1st day of Confusion in the YOLD 3192
*
*/
#include <stdio.h>
#include "../common/protocol.h"
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
int main (int argc, char *argv[])
{
fprintf(stderr, "####### %s\n", __FILE__);
return 0;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */