Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First pass of how to save config as xml #300

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
Configuring your Hardware :bdg-success:`AS`
===========================================
testing to see if my changes are showing UP

.. toctree::
:maxdepth: 1

../../shared/configuring_android/Configuring-Your-Android-Devices
/hardware_and_software_configuration/connecting_devices/index
/hardware_and_software_configuration/configuring/index
/hardware_and_software_configuration/configuring/index
../configuration_as_code/configuration_as_code
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Version controlling robot configuration
====================================
After you have created a robot configuration, you can put it in your code so
that it can be version controlled.

Saving the Configuration Information Instructions
-------------------------------------------------
1. Go to the root of your Android Studio Project
2. cd TeamCode/src/main/res/xml
3. adb pull /sdcard/FIRST/<name of config>.xml
4. The next time you build your code, this will be installed as a read only config
5. To not have two with the same name, you can adb shell rm /sdcard/FIRST/<name of config>.xml
Loading