Goals and Challenges for Sawppy ESP32 Software
With a cardboard rover test platform ready to go, I've run out of excuses to put off the software portion of micro Sawppy rover work. If my little rover is going to come alive, the software work must be done. This task shouldn't be as intimidating as it feels, because this is my second round through writing rover brain code. I have learned some lessons from writing SGVHAK rover code running on a Raspberry Pi (code which I then adapted to Sawppy) and those lessons should help me this time on the ESP32.
One goal for my new ESP32 project is to be more ROS-friendly. I'm not ready to dive straight into micro-ROS right now. But when I (or someone else) tackles the challenge, the project shouldn't be tripped up by something that needlessly complicates the task. I wrote SGVHAK rover code before I knew much about ROS, and in hindsight I made some decisions that made a ROS port annoying for no good reason. For example, the ROS convention for robot forward is along the +X axis. Ignorant of this when I wrote SGVHAK rover software, I chose forward to be +Y axis. The ROS convention for angular measurements are radians for units, and the right-hand rule for positive rotation. Meaning a positive rover steering rotation is counter-clockwise. For SGVHAK rover, I worked with angles in degrees and positive rotation was clockwise. There was no reason to go against these ROS conventions, it was done purely out of ignorance. If I were to adapt my SGVHAK rover code to ROS, a whole bunch of conversions need to occur risking additional surface area for bugs. I completely understand why Rhys Mainwaring wrote a rover ROS software stack from scratch instead, I would have done the same!
So for my upcoming ESP32 Sawppy rover brain project, I'll keep ROS conventions in mind. Specifically REP103 for units and coordinate conventions. Another ROS-inspired similarity will be messages, which is a new luxury gained by the change in platform. For SGVHAK rover I avoided the complications of introducing multiprocessing concepts to Python code running on a Raspberry Pi. But now I'm targeting the customized FreeRTOS Espressif created to run an ESP32, I gain a lot of multiprocessing tools as a natural and fundamental part of the platform. I will be organizing my code components into FreeRTOS tasks, which has similarities to how ROS organizes code components into nodes. So when my tasks communicate with each other, I'll look to see if there is a ROS equivalent. I won't be able to make my FreeRTOS messages compatible with ROS message formats, though. Because I won't have some of the luxuries like dynamically sized arrays. But the data organization should at least look similar.
I foresee the following items, and I'll probably find more as I go:
- I will rewrite my ESP32 ADC joystick code to communicate with a new data message. It should resemble
sensor_msgs/Joy
from ROS, normalized to the same value ranges. - When I write the task which translates raw input into desired rover chassis command, that result will be communicated with something that resembles
geometry_msgs/Twist
used for ROS topiccmd_vel
(Commanded Velocity). - When that cmd_vel command is broken down to commands for individual motors and actuators, those individual commands should resemble joint commands of ros_control. I have not yet worked with ros_control myself so this one is the fuzziest with the most unknowns. But I look forward to learning!
And as expected of a learning project, I ran into problems immediately with the first item on the list. I eventually decided to devise a workaround for ESP32 ADC behavior I don't understand yet.