Skip to content

Commit fab653c

Browse files
committed
Update comments and logs from jetson nano to pi
1 parent 69ac471 commit fab653c

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/software/embedded/ansible/playbooks/example_playbook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
# Example Ansible playbook that can be run on multiple Jetson Nanos
2+
# Example Ansible playbook that can be run on multiple Raspberry Pis
33

44
# plays start by defining basic setup info
55
- name: Example Ansible playbook # name of this playbook

src/software/embedded/ansible/tasks/setup_robot_software_deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
dest: ~/
88
copy_links: true
99

10-
# Output is streamed to target host's (Jetson/Pi's /tmp/setup.log)
10+
# Output is streamed to target host's (Pi's /tmp/setup.log)
1111
- name: Running the setup script, this will take a while
1212
become_method: ansible.builtin.sudo
1313
become: true

src/software/embedded/services/power.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ PowerService::PowerService()
1111

1212
if (!boost::filesystem::exists(DEVICE_SERIAL_PORT))
1313
{
14-
throw std::runtime_error("USB not plugged into the Jetson Nano");
14+
throw std::runtime_error("USB not plugged into the Raspberry Pi");
1515
}
1616
this->uart = std::make_unique<BoostUartCommunication>(BAUD_RATE, DEVICE_SERIAL_PORT);
1717
this->read_thread = std::thread(std::bind(&PowerService::continuousRead, this));

src/software/embedded/services/robot_auto_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int main(int argc, char **argv)
3636
{
3737
LoggerSingleton::initializeLogger(runtime_dir, nullptr, false);
3838

39-
LOG(INFO) << "Running on the Jetson Nano!";
39+
LOG(INFO) << "Running on the Raspberry Pi!";
4040

4141
motor_service_ =
4242
std::make_unique<MotorService>(create2021RobotConstants(), THUNDERLOOP_HZ);

src/tbots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def main(
121121
if not debug_build and (not no_optimized_build or flash_robots):
122122
command += ["--copt=-O3"]
123123

124-
# Used for when flashing Jetsons
124+
# Used for when flashing Raspberry Pi
125125
if flash_robots:
126126
command += ["--platforms=//toolchains/cc:robot"]
127127

0 commit comments

Comments
 (0)