From 135b43a4a8740d259cbddecf7fbde4ea5ccad12b Mon Sep 17 00:00:00 2001 From: GabeMillikan <44247924+GabeMillikan@users.noreply.github.com> Date: Wed, 22 Oct 2025 12:16:57 -0700 Subject: [PATCH 1/3] "FancyLayers-RENAME" -> "Inhouse" --- Lib/{FancyLayers-RENAME => Inhouse}/GRCAN/empty.txt | 0 Lib/{FancyLayers-RENAME => Inhouse}/NeoPixel/empty.txt | 0 Lib/{FancyLayers-RENAME => Inhouse}/SAE-J1939/empty.txt | 0 Lib/{FancyLayers-RENAME => Inhouse}/TPL/empty.txt | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename Lib/{FancyLayers-RENAME => Inhouse}/GRCAN/empty.txt (100%) rename Lib/{FancyLayers-RENAME => Inhouse}/NeoPixel/empty.txt (100%) rename Lib/{FancyLayers-RENAME => Inhouse}/SAE-J1939/empty.txt (100%) rename Lib/{FancyLayers-RENAME => Inhouse}/TPL/empty.txt (100%) diff --git a/Lib/FancyLayers-RENAME/GRCAN/empty.txt b/Lib/Inhouse/GRCAN/empty.txt similarity index 100% rename from Lib/FancyLayers-RENAME/GRCAN/empty.txt rename to Lib/Inhouse/GRCAN/empty.txt diff --git a/Lib/FancyLayers-RENAME/NeoPixel/empty.txt b/Lib/Inhouse/NeoPixel/empty.txt similarity index 100% rename from Lib/FancyLayers-RENAME/NeoPixel/empty.txt rename to Lib/Inhouse/NeoPixel/empty.txt diff --git a/Lib/FancyLayers-RENAME/SAE-J1939/empty.txt b/Lib/Inhouse/SAE-J1939/empty.txt similarity index 100% rename from Lib/FancyLayers-RENAME/SAE-J1939/empty.txt rename to Lib/Inhouse/SAE-J1939/empty.txt diff --git a/Lib/FancyLayers-RENAME/TPL/empty.txt b/Lib/Inhouse/TPL/empty.txt similarity index 100% rename from Lib/FancyLayers-RENAME/TPL/empty.txt rename to Lib/Inhouse/TPL/empty.txt From ef26b3c6953f30d0ba24dcb309b3685062eaee01 Mon Sep 17 00:00:00 2001 From: GabeMillikan <44247924+GabeMillikan@users.noreply.github.com> Date: Wed, 22 Oct 2025 12:17:02 -0700 Subject: [PATCH 2/3] add inhouse readme --- Lib/Inhouse/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Lib/Inhouse/README.md diff --git a/Lib/Inhouse/README.md b/Lib/Inhouse/README.md new file mode 100644 index 00000000..9342d723 --- /dev/null +++ b/Lib/Inhouse/README.md @@ -0,0 +1,11 @@ +# Lib/Inhouse + +A place where Gaucho Racing stores its code that is shared across many boards. +This includes: +| Name | Description | +| ------- | ------ | +| [`GRCAN`](./GRCAN/) | todo | +| [`NeoPixel`](./NeoPixel/) | todo | +| [`SAE-J1939`](./SAE-J1939/) | todo | +| [`TPL`](./TPL/) | todo | +| [`Peripherals`](./Peripherals/) | A collection of abstract peripheral interfaces, to reduce boilerplate and duplication of user-code using those peripherals. The interface for each one is meant to be very similar, so we can easily replace one with another. | From 4f0e22d94d4a126d4b543d67583863003043b052 Mon Sep 17 00:00:00 2001 From: GabeMillikan <44247924+GabeMillikan@users.noreply.github.com> Date: Wed, 22 Oct 2025 12:20:14 -0700 Subject: [PATCH 3/3] Create usart.h --- Lib/Inhouse/Peripherals/usart.h | 1 + 1 file changed, 1 insertion(+) create mode 100644 Lib/Inhouse/Peripherals/usart.h diff --git a/Lib/Inhouse/Peripherals/usart.h b/Lib/Inhouse/Peripherals/usart.h new file mode 100644 index 00000000..0ffdd02f --- /dev/null +++ b/Lib/Inhouse/Peripherals/usart.h @@ -0,0 +1 @@ +// TODO \ No newline at end of file