Rename config.json to aos_config.json

Plenty of other things are called config.json, so let's pick a more
unique name.

Change-Id: I6510a172ec62674dd1b11bd71cef9aac2480c612
Signed-off-by: Austin Schuh <austin.linux@gmail.com>
diff --git a/frc971/codelab/BUILD b/frc971/codelab/BUILD
index 673e0b2..4e1da3d 100644
--- a/frc971/codelab/BUILD
+++ b/frc971/codelab/BUILD
@@ -7,7 +7,7 @@
     name = "basic_test",
     testonly = 1,
     srcs = ["basic_test.cc"],
-    data = [":config"],
+    data = [":aos_config"],
     target_compatible_with = ["@platforms//os:linux"],
     deps = [
         ":basic",
@@ -74,7 +74,7 @@
 )
 
 aos_config(
-    name = "config",
+    name = "aos_config",
     src = "codelab.json",
     flatbuffers = [
         ":basic_goal_fbs",
@@ -84,6 +84,6 @@
     ],
     target_compatible_with = ["@platforms//os:linux"],
     deps = [
-        "//frc971/input:config",
+        "//frc971/input:aos_config",
     ],
 )
diff --git a/frc971/codelab/basic_test.cc b/frc971/codelab/basic_test.cc
index dc80988..6f8e6cc 100644
--- a/frc971/codelab/basic_test.cc
+++ b/frc971/codelab/basic_test.cc
@@ -93,7 +93,7 @@
  public:
   BasicControlLoopTest()
       : ::frc971::testing::ControlLoopTest(
-            aos::configuration::ReadConfig("frc971/codelab/config.json"),
+            aos::configuration::ReadConfig("frc971/codelab/aos_config.json"),
             chrono::microseconds(5050)),
         test_event_loop_(MakeEventLoop("test")),
         goal_sender_(test_event_loop_->MakeSender<Goal>("/codelab")),